Go to: Synopsis. Return value. Related. Flags. MEL examples.

Synopsis

translator [-defaultFileRule string] [-defaultOptions string] [-extension string] [-fileCompression string] [-filter string] [-list] [-loaded] [-objectType] [-optionsScript] [-readSupport] [-writeSupport] [string]

translator is undoable, queryable, and NOT editable.

Set or query parameters associated with the file translators specified in as the argument.

Return value

booleanor string array depending upon which flags are specified.

In query mode, return type is based on queried flag.

Related

workspace

Flags

defaultFileRule, defaultOptions, extension, fileCompression, filter, list, loaded, objectType, optionsScript, readSupport, writeSupport
Long name (short name) Argument types Properties
-list(-l) query
Return a string array of all the translators that are loaded.
-loaded(-ld) query
Returns true if the given translator is currently loaded.
-defaultOptions(-do) string query
Return/set a string of default options used by this translator.
-objectType(-ot) query
This flag is obsolete. This will now return the same results as defaultFileRule going forward.
-optionsScript(-os) query
Query the name of the options script to use to post the user options UI. When this script is invoked it will expect the name of the parent layout in which the options will be displayed as well as the name of the callback to be invoked once the apply button has been depressed in the options area.
-readSupport(-rs) query
Returns true if this translator supports read operations.
-writeSupport(-ws) query
Returns true if this translator supports write operations.
-fileCompression(-cmp) string query
Specifies the compression action to take when a file is saved. Possible values are "compressed", "uncompressed" "asCompressed".
-extension(-ext) string query
Returns the default file extension for this translator.
-filter(-f) string query
Returns the filter string used for this translator.
-defaultFileRule(-dfr) string query
Returns the default file rule value, can return "" as well

Flag can appear in Create mode of command Flag can appear in Edit mode of command
Flag can appear in Query mode of command Flag can be used more than once in a command.

MEL examples

// Returns true if dxf files can be read.
translator -q -rs "dxf";
// Returns the default file rule
translator -q -dfr "FBX";
// ,Result:, data