<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Setting STEP File Save As Options values as defaults in Inventor Programming Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-forum/setting-step-file-save-as-options-values-as-defaults/m-p/12259586#M31867</link>
    <description>&lt;P&gt;BTW, here is&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3596957"&gt;@jeremiah_boe&lt;/a&gt;'s idea to vote for:&lt;BR /&gt;&lt;A href="https://forums.autodesk.com/t5/inventor-ideas/step-file-export-options-able-to-be-preset/idi-p/11477660" target="_blank"&gt;STEP file export options able to be preset - Autodesk Community&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 22 Sep 2023 16:12:10 GMT</pubDate>
    <dc:creator>SER4</dc:creator>
    <dc:date>2023-09-22T16:12:10Z</dc:date>
    <item>
      <title>Setting STEP File Save As Options values as defaults</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/setting-step-file-save-as-options-values-as-defaults/m-p/11474935#M31856</link>
      <description>&lt;P&gt;I am attempting to create an external rule that gets triggered after file open that will set the Save As options for the STEP file type without actually saving a STEP file (that will be done at a later time).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jeremiahboe_0-1665491442895.png" style="width: 341px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1125873i7D7BC207082AD978/image-dimensions/341x452?v=v2" width="341" height="452" role="button" title="jeremiahboe_0-1665491442895.png" alt="jeremiahboe_0-1665491442895.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jeremiahboe_1-1665491477256.png" style="width: 287px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1125874iFC2DE7716CE268BD/image-dimensions/287x451?v=v2" width="287" height="451" role="button" title="jeremiahboe_1-1665491477256.png" alt="jeremiahboe_1-1665491477256.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have been able to do something similar with the Print Manager. I have tried to use the STEP Translator codes that are out there, but haven't had any luck in getting the values to remain in the Save As option window as the default values.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Oct 2022 12:38:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/setting-step-file-save-as-options-values-as-defaults/m-p/11474935#M31856</guid>
      <dc:creator>jeremiah_boe</dc:creator>
      <dc:date>2022-10-11T12:38:24Z</dc:date>
    </item>
    <item>
      <title>Re: Setting STEP File Save As Options values as defaults</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/setting-step-file-save-as-options-values-as-defaults/m-p/11474966#M31857</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3596957"&gt;@jeremiah_boe&lt;/a&gt;&amp;nbsp; you can try this code. It will export a currently open part file to a STP file. It will prompt the save as dialog opening it to the current files location &amp;amp; naming it the same except the file extension. Some of the options are commented out that can help with seeing the steps of the application.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="visual-basic"&gt;    Public Sub ExportToSTL()

        ' CHECK THAT PART FILE IS OPEN.
        If oDocument.DocumentType &amp;lt;&amp;gt; kPartDocumentObject Then 'DOCUMENTTYPEENUM
            MsgBox("The open file is not a part file. The command has been cancelled.")
            Exit Sub
        End If

        ' GET THE STEP EXPORT ADDIN USING ID &amp;amp; ACTIVATE IT.
        Dim oInvAddIns As ApplicationAddIns = ThisApplication.ApplicationAddIns
        Dim STEP_TranslatorAddIn As TranslatorAddIn = oInvAddIns.ItemById("{90AF7F40-0C01-11D5-8E83-0010B541CD80}") 'TRANSLATOR: STP EXPORT
        STEP_TranslatorAddIn.Activate()
        Dim transientObj As TransientObjects = ThisApplication.TransientObjects
        Dim oContext As TranslationContext = transientObj.CreateTranslationContext
        oContext.Type = kFileBrowseIOMechanism
        Dim oOptions As NameValueMap = transientObj.CreateNameValueMap
        Dim oDataMedium As DataMedium = ThisApplication.TransientObjects.CreateDataMedium

        MsgBox("Before saveas check.")
        ' CHECK IF THE TRANSLATOR HAS 'SAVECOPYAS' OPTIONS
        If STEP_TranslatorAddIn.HasSaveCopyAsOptions(oDocument, oContext, oOptions) Then

            oOptions.Value("ApplicationProtocolType") = 3               ' INTEGER
            oOptions.Value("IncludeSketches") = False                   ' BOOLEAN
            oOptions.Value("Organization") = "Organization"     ' STRING
            'oOptions.Value("Author") =                                 ' STRING
            'oOptions.Value("Authorization") =                          ' STRING
            'oOptions.Value("Description") =                            ' STRING
            'oOptions.Value("export_fit_tolerance") = ' 0.xxx-xxxxxxxx   ' DOUBLE

            ' SHOW THE OPTIONS DIALOG.
            'STEP_TranslatorAddIn.ShowSaveCopyAsOptions(oDocument, oContext, oOptions)

            ' SET THE STEP TARGET FOLDER PATH. CHECK FOR THE FOLDER. CREATE FOLDER IF IT DOESN'T EXIST.
            'If Not System.IO.Directory.Exists(oFilePath) Then
            'Try
            '    System.IO.Directory.CreateDirectory(oFolder)
            'Catch ex As Exception
            'End Try
            'End If

            ' OPEN FILE DIALOG TO CHOOSE NAME &amp;amp; LOCATION OF EXPORTED STEP FILE.
            ' DEFAULTS TO 3D PRINTER FILE LOCATION &amp;amp; OPEN FILE NAME.
            Dim oSaveFileDialog1 As New SaveFileDialog With
                {
                .InitialDirectory = oFilePath,
                .Filter = "STEP Files (*.stp;*.ste;*.step;*.stpz)|*.stp;*.ste;*.step;*.stpz",
                .FileName = oFileName,
                .DefaultExt = ".stp"
                }

            ' SET THE STEP TARGET FILE NAME BASED ON THE DIALOG INPUT.
            If oSaveFileDialog1.ShowDialog() &amp;lt;&amp;gt; DialogResult.OK Then
                Exit Sub
            End If
            oDataMedium.FileName = oSaveFileDialog1.FileName

            ' EXPORT STEP WITH PRE-SELECTED SETTINGS IN THE SELECTED FILE LOCATION.
            Try
                STEP_TranslatorAddIn.SaveCopyAs(oDocument, oContext, oOptions, oDataMedium)
            Catch ex As Exception
            End Try
        End If

        STEP_TranslatorAddIn.Deactivate()

    End Sub&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Oct 2022 12:50:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/setting-step-file-save-as-options-values-as-defaults/m-p/11474966#M31857</guid>
      <dc:creator>tyler.warner</dc:creator>
      <dc:date>2022-10-11T12:50:23Z</dc:date>
    </item>
    <item>
      <title>Re: Setting STEP File Save As Options values as defaults</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/setting-step-file-save-as-options-values-as-defaults/m-p/11475016#M31858</link>
      <description>&lt;P&gt;Tyler,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am getting a few error statements within the supplied code. I can handle the Line 4 Error, but the others I am not quite certain of.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jeremiahboe_0-1665493469434.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1125904iE8E766B8364F3B51/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jeremiahboe_0-1665493469434.png" alt="jeremiahboe_0-1665493469434.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Oct 2022 13:04:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/setting-step-file-save-as-options-values-as-defaults/m-p/11475016#M31858</guid>
      <dc:creator>jeremiah_boe</dc:creator>
      <dc:date>2022-10-11T13:04:39Z</dc:date>
    </item>
    <item>
      <title>Re: Setting STEP File Save As Options values as defaults</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/setting-step-file-save-as-options-values-as-defaults/m-p/11475028#M31859</link>
      <description>&lt;P&gt;Sorry about that had variables declared outside the sub &amp;amp; forget to put them in there, try this.&lt;/P&gt;&lt;P&gt;If it's still having trouble with the windows save as dialog, we can change that to an inventor save as dialog.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="visual-basic"&gt;Imports System.Windows.Forms

Public Sub Main()

    Dim oDocument As Document = ThisApplication.ActiveDocument
    Dim oFileName As String = oDocument.DisplayName.Replace(".ipt", "")
    Dim oFilePath As String = oDocument.FullFileName.Replace("\" &amp;amp; oFileName &amp;amp; ".ipt", "")

    ' CHECK THAT PART FILE IS OPEN.
    If oDocument.DocumentType &amp;lt;&amp;gt; kPartDocumentObject Then 'DOCUMENTTYPEENUM
        MsgBox("The open file is not a part file. The command has been cancelled.")
        Exit Sub
    End If

    ' GET THE STEP EXPORT ADDIN USING ID &amp;amp; ACTIVATE IT.
    Dim oInvAddIns As ApplicationAddIns = ThisApplication.ApplicationAddIns
    Dim STEP_TranslatorAddIn As TranslatorAddIn = oInvAddIns.ItemById("{90AF7F40-0C01-11D5-8E83-0010B541CD80}") 'TRANSLATOR: STP EXPORT
    STEP_TranslatorAddIn.Activate()
    Dim transientObj As TransientObjects = ThisApplication.TransientObjects
    Dim oContext As TranslationContext = transientObj.CreateTranslationContext
    oContext.Type = kFileBrowseIOMechanism
    Dim oOptions As NameValueMap = transientObj.CreateNameValueMap
    Dim oDataMedium As DataMedium = ThisApplication.TransientObjects.CreateDataMedium

    ' MsgBox("Before saveas check.")
    ' CHECK IF THE TRANSLATOR HAS 'SAVECOPYAS' OPTIONS
    If STEP_TranslatorAddIn.HasSaveCopyAsOptions(oDocument, oContext, oOptions) Then

        oOptions.Value("ApplicationProtocolType") = 3               ' INTEGER
        oOptions.Value("IncludeSketches") = False                   ' BOOLEAN
        oOptions.Value("Organization") = "Spraying Systems Co."     ' STRING
        'oOptions.Value("Author") =                                 ' STRING
        'oOptions.Value("Authorization") =                          ' STRING
        'oOptions.Value("Description") =                            ' STRING
        'oOptions.Value("export_fit_tolerance") = ' 0.xxx-xxxxxxxx   ' DOUBLE

        ' SHOW THE OPTIONS DIALOG.
        'STEP_TranslatorAddIn.ShowSaveCopyAsOptions(oDocument, oContext, oOptions)

        ' SET THE STEP TARGET FOLDER PATH. CHECK FOR THE FOLDER. CREATE FOLDER IF IT DOESN'T EXIST.
        'If Not System.IO.Directory.Exists(oFilePath) Then
        'Try
        '    System.IO.Directory.CreateDirectory(oFolder)
        'Catch ex As Exception
        'End Try
        'End If

        ' OPEN FILE DIALOG TO CHOOSE NAME &amp;amp; LOCATION OF EXPORTED STEP FILE.
        ' DEFAULTS TO 3D PRINTER FILE LOCATION &amp;amp; OPEN FILE NAME.
        Dim oSaveFileDialog1 As New SaveFileDialog With
            {
            .InitialDirectory = oFilePath,
            .Filter = "STEP Files (*.stp;*.ste;*.step;*.stpz)|*.stp;*.ste;*.step;*.stpz",
            .FileName = oFileName,
            .DefaultExt = ".stp"
            }

        ' SET THE STEP TARGET FILE NAME BASED ON THE DIALOG INPUT.
        If oSaveFileDialog1.ShowDialog() &amp;lt;&amp;gt; DialogResult.OK Then
            Exit Sub
        End If
        oDataMedium.FileName = oSaveFileDialog1.FileName

        ' EXPORT STEP WITH PRE-SELECTED SETTINGS IN THE SELECTED FILE LOCATION.
        Try
            STEP_TranslatorAddIn.SaveCopyAs(oDocument, oContext, oOptions, oDataMedium)
        Catch ex As Exception
        End Try
    End If

    STEP_TranslatorAddIn.Deactivate()

End Sub&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Oct 2022 13:21:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/setting-step-file-save-as-options-values-as-defaults/m-p/11475028#M31859</guid>
      <dc:creator>tyler.warner</dc:creator>
      <dc:date>2022-10-11T13:21:39Z</dc:date>
    </item>
    <item>
      <title>Re: Setting STEP File Save As Options values as defaults</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/setting-step-file-save-as-options-values-as-defaults/m-p/11475086#M31860</link>
      <description>&lt;P&gt;I got the code to run. It is still asking for an actual creation of the STEP file. I am looking for just setting the oOptions.Value part of the code without having to invoke the dialog box.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;   &lt;SPAN&gt;oOptions&lt;/SPAN&gt;.&lt;SPAN&gt;Value&lt;/SPAN&gt;(&lt;SPAN&gt;"ApplicationProtocolType"&lt;/SPAN&gt;) = 3               &lt;SPAN&gt;' INTEGER&lt;/SPAN&gt;
        &lt;SPAN&gt;oOptions&lt;/SPAN&gt;.&lt;SPAN&gt;Value&lt;/SPAN&gt;(&lt;SPAN&gt;"IncludeSketches"&lt;/SPAN&gt;) = &lt;SPAN&gt;False&lt;/SPAN&gt;                   &lt;SPAN&gt;' BOOLEAN&lt;/SPAN&gt;
        &lt;SPAN&gt;oOptions&lt;/SPAN&gt;.&lt;SPAN&gt;Value&lt;/SPAN&gt;(&lt;SPAN&gt;"Organization"&lt;/SPAN&gt;) = &lt;SPAN&gt;"Spraying Systems Co."&lt;/SPAN&gt;     &lt;SPAN&gt;' STRING&lt;/SPAN&gt;
        &lt;SPAN&gt;'oOptions.Value("Author") =                                 ' STRING&lt;/SPAN&gt;
        &lt;SPAN&gt;'oOptions.Value("Authorization") =                          ' STRING&lt;/SPAN&gt;
        &lt;SPAN&gt;'oOptions.Value("Description") =                            ' STRING&lt;/SPAN&gt;
        &lt;SPAN&gt;'oOptions.Value("export_fit_tolerance") = ' 0.xxx-xxxxxxxx   ' DOUBLE&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;I actually have an automatic STEP file created for us with our vaulting system. I want to ensure that all of our users have the same settings prior to when the auto STEP process kicks in.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Oct 2022 13:37:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/setting-step-file-save-as-options-values-as-defaults/m-p/11475086#M31860</guid>
      <dc:creator>jeremiah_boe</dc:creator>
      <dc:date>2022-10-11T13:37:56Z</dc:date>
    </item>
    <item>
      <title>Re: Setting STEP File Save As Options values as defaults</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/setting-step-file-save-as-options-values-as-defaults/m-p/11475134#M31861</link>
      <description>&lt;P&gt;Could you just include the export options to your Vault STP creation?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm not sure where the users export settings get stored but the system does remember your last export options.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Oct 2022 13:56:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/setting-step-file-save-as-options-values-as-defaults/m-p/11475134#M31861</guid>
      <dc:creator>tyler.warner</dc:creator>
      <dc:date>2022-10-11T13:56:52Z</dc:date>
    </item>
    <item>
      <title>Re: Setting STEP File Save As Options values as defaults</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/setting-step-file-save-as-options-values-as-defaults/m-p/11475206#M31862</link>
      <description>&lt;P&gt;Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3596957"&gt;@jeremiah_boe&lt;/a&gt;.&amp;nbsp; I am simply curious why you would want to set the SaveCopyAs settings at a different time than when you actually use the &lt;A href="https://help.autodesk.com/view/INVNTOR/2022/ENU/?guid=TranslatorAddIn_SaveCopyAs" target="_blank" rel="noopener"&gt;SaveCopyAs&lt;/A&gt; method to export your file?&amp;nbsp; Are you trying to help performance like processing time, simplify the other code for some reason, or is there another reason?&amp;nbsp; Also, did you know that you can have the code actually show you that options dialog, so you can manually set the settings you want, instead of having to do it by code, then let the code finish saving out the STEP file?&amp;nbsp; The &lt;A href="https://help.autodesk.com/view/INVNTOR/2022/ENU/?guid=TranslatorAddIn" target="_blank" rel="noopener"&gt;TranslatorAddIn&lt;/A&gt; object has a method named &lt;A href="https://help.autodesk.com/view/INVNTOR/2022/ENU/?guid=TranslatorAddIn_ShowSaveCopyAsOptions" target="_blank" rel="noopener"&gt;ShowSaveCopyAsOptions&lt;/A&gt;, which you can use, but few folks do, because they want to keep it all automatic (minimal user interaction).&lt;/P&gt;</description>
      <pubDate>Tue, 11 Oct 2022 14:27:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/setting-step-file-save-as-options-values-as-defaults/m-p/11475206#M31862</guid>
      <dc:creator>WCrihfield</dc:creator>
      <dc:date>2022-10-11T14:27:28Z</dc:date>
    </item>
    <item>
      <title>Re: Setting STEP File Save As Options values as defaults</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/setting-step-file-save-as-options-values-as-defaults/m-p/11475326#M31863</link>
      <description>&lt;P&gt;We have multiple users that will kick off manual STEP files for suppliers and not knowing how they configure their STEP files is the reason for this. We have now put in place an automatic STEP file that is created as a viewable file during our store process which utilizes the Save As method for creating the file. By logically putting the STEP option values into our default criteria on open or save, it provides the 3rd party software a consistent starting point across our user base for creating those files and storing them in our vault.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And yes I would like to have this as an invisible process to the users.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Oct 2022 15:12:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/setting-step-file-save-as-options-values-as-defaults/m-p/11475326#M31863</guid>
      <dc:creator>jeremiah_boe</dc:creator>
      <dc:date>2022-10-11T15:12:53Z</dc:date>
    </item>
    <item>
      <title>Re: Setting STEP File Save As Options values as defaults</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/setting-step-file-save-as-options-values-as-defaults/m-p/11475354#M31864</link>
      <description>&lt;P&gt;It looks like you might be able to set the&amp;nbsp;&lt;A href="https://help.autodesk.com/view/INVNTOR/2022/ENU/?guid=SaveAsSTEPTranslator_Sample" target="_blank" rel="noopener"&gt;Save As (link)&lt;/A&gt;&amp;nbsp;or &lt;A href="https://help.autodesk.com/view/INVNTOR/2022/ENU/?guid=TranslatorAddIn5_Sample" target="_blank" rel="noopener"&gt;Export (link)&lt;/A&gt;&amp;nbsp;options of the user or file without running the actual command. You'll have to do the testing of this. The links are turning on the dialog. The code posted above has that suppressed with the options being set in the code. See if either of these works in combination with the provided code above.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Oct 2022 15:28:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/setting-step-file-save-as-options-values-as-defaults/m-p/11475354#M31864</guid>
      <dc:creator>tyler.warner</dc:creator>
      <dc:date>2022-10-11T15:28:20Z</dc:date>
    </item>
    <item>
      <title>Re: Setting STEP File Save As Options values as defaults</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/setting-step-file-save-as-options-values-as-defaults/m-p/11475371#M31865</link>
      <description>&lt;P&gt;OK.&amp;nbsp; So, not all users will be using your code tool for generating their STEP files, and you want it so that even if they use the manual process of generating a STEP file, that those specified settings will already be in place, and ready for them to click the Save button.&amp;nbsp; That makes sense.&amp;nbsp; However, as &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6500545"&gt;@tyler.warner&lt;/a&gt; mentioned, there does not appear to be any way to 'store' those settings.&amp;nbsp; And there does not appear to be a way to 'load' those settings from the 'stored' location/file.&amp;nbsp; When exporting a DXF, you can save your 'configuration' settings out in an "*.ini" file, and your 'post process' settings out in an "*.xml" file, but when exporting to "*.stp", there is no option to save your current settings, or load any previously saved settings from a file.&amp;nbsp; This may be a good challenge to ask the folks at Autodesk about directly, and also maybe make a post within the Inventor Ideas Forum about, in an attempt to get something like that implemented in future releases.&amp;nbsp; Since Autodesk appears to be the author of the TranslatorAddIn being used, they would likely have to be the ones to implement a way to save your settings.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Oct 2022 15:34:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/setting-step-file-save-as-options-values-as-defaults/m-p/11475371#M31865</guid>
      <dc:creator>WCrihfield</dc:creator>
      <dc:date>2022-10-11T15:34:23Z</dc:date>
    </item>
    <item>
      <title>Re: Setting STEP File Save As Options values as defaults</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/setting-step-file-save-as-options-values-as-defaults/m-p/11475389#M31866</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7812054"&gt;@WCrihfield&lt;/a&gt;&amp;nbsp; and&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6500545"&gt;@tyler.warner&lt;/a&gt;&amp;nbsp; for the responses. I will take a crack at the last couple of links that Tyler provided, then if those don't work, send it up the pole to the Inventor Ideas Forum.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Oct 2022 15:43:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/setting-step-file-save-as-options-values-as-defaults/m-p/11475389#M31866</guid>
      <dc:creator>jeremiah_boe</dc:creator>
      <dc:date>2022-10-11T15:43:33Z</dc:date>
    </item>
    <item>
      <title>Re: Setting STEP File Save As Options values as defaults</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/setting-step-file-save-as-options-values-as-defaults/m-p/12259586#M31867</link>
      <description>&lt;P&gt;BTW, here is&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3596957"&gt;@jeremiah_boe&lt;/a&gt;'s idea to vote for:&lt;BR /&gt;&lt;A href="https://forums.autodesk.com/t5/inventor-ideas/step-file-export-options-able-to-be-preset/idi-p/11477660" target="_blank"&gt;STEP file export options able to be preset - Autodesk Community&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Sep 2023 16:12:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/setting-step-file-save-as-options-values-as-defaults/m-p/12259586#M31867</guid>
      <dc:creator>SER4</dc:creator>
      <dc:date>2023-09-22T16:12:10Z</dc:date>
    </item>
  </channel>
</rss>

