cmdScrollFieldExecuter is undoable, queryable, and editable.
A script editor executer control used to issue script commands to
Maya.
| Long name (short name) |
[argument types] |
Properties |
-load(-ld)
|
|

|
|
Prompts the user for a script to load into this field.
|
|
-source(-src)
|
|

|
|
Prompts the user for a script to source (execute without loading).
|
|
-saveSelection(-sv)
|
string
|

|
|
Prompts to save the current selection to a file. The default filename prompt will be prepended with the given string.
|
|
-saveSelectionToShelf(-svs)
|
|

|
|
Prompts to save the current selection to an item in the shelf.
|
|
-selectAll(-sla)
|
|

|
|
|
-select(-sl)
|
int int
|

|
|
Selects text within a specified range.
|
|
-hasSelection(-hsl)
|
|
|
|
Whether this control currently has a selection or not.
In query mode, this flag needs a value.
|
|
-selectedText(-slt)
|
|
|
|
The text in the current selection range.
In query mode, this flag needs a value.
|
|
-clear(-clr)
|
|

|
|
|
-text(-t)
|
string
|
 
|
|
Replaces the field text with the given string.
In query mode, this flag needs a value.
|
|
-textLength(-tl)
|
|
|
|
The number of characters in this text field.
In query mode, this flag needs a value.
|
|
-cutSelection(-ct)
|
|

|
|
Cuts the current selection from this field.
|
|
-copySelection(-cp)
|
|

|
|
Copies the current selection from this field.
|
|
-pasteSelection(-pst)
|
|

|
|
Pastes text into this field at the current caret position.
|
|
-hasFocus(-hf)
|
|
|
|
Whether this control is currently in focus.
In query mode, this flag needs a value.
|
|
-undo(-ud)
|
|

|
|
Undo the last operation (Currently supported on Windows/Mac Only)
|
|
-redo(-rd)
|
|

|
|
Redo the last operation (Currently supported on Windows/Mac Only)
|
|
-execute(-exc)
|
|

|
|
Executes the currentl selection.
|
|
-executeAll(-exa)
|
|

|
|
Executes all text in the current executer control.
|
|
-storeContents(-stc)
|
string
|

|
|
Attempts to store the contents of this field into the specified filename, create a new unique file with
the given string prefix if one already exists. The path and extension for the file is provided internally.
Returns the filename of the file saved upon completion, and an empty string otherwise. This command
is Only intended for storing contents of this executer field for the next instance of this field.
|
|
-loadContents(-ldc)
|
string
|

|
|
Loads the contents of the specified filename into this field. The path and extension for this filename
is provided internally. This command is Only intended for loading the contents of this executer field from a previous
instance of this executer field.
|
|
-removeStoredContents(-rsc)
|
string
|

|
|
Removes the stored contents of this field with the specified filename. The path and extension for the file is
provided internally. This command is Only intended for removing previously stored contens of this executer field.
|
|
-appendText(-at)
|
string
|

|
|
Appends text to the end of this field.
|
|
-insertText(-it)
|
string
|

|
|
Inserts the specified text into the position under the cursor,
replacing any currently selected text. The selection and cursor
position can be set using the select flag. Appends text to the
end of this field.
|
|
-sourceType(-st)
|
string
|

|
|
Sets the source type for this command executer field. Currently supports "mel" (enabled by default).
In query mode, this flag needs a value.
|
|
-showLineNumbers(-sln)
|
boolean
|
 
|
|
Shows/hides the line numbes column.
In query mode, this flag needs a value.
|
|
-searchDown(-sd)
|
boolean
|
 
|
|
Specifies whether to search from the cursor down, or up.
In query mode, this flag needs a value.
|
|
-searchMatchCase(-smc)
|
boolean
|
 
|
|
Specifies whether the search is to be case sensitive or not.
In query mode, this flag needs a value.
|
|
-searchString(-ss)
|
string
|
 
|
|
Specifies the string to search for.
In query mode, this flag needs a value.
|
|
-searchAndSelect(-sas)
|
|
|
|
Searches for (and selects) the sepecified search string using the
specified search options.
In query mode, this flag needs a value.
|
|
-replaceAll(-rpa)
|
string string
|

|
|
Replaces all instances of the first string in the field text with the
second string.
|
|
-currentLine(-cl)
|
int
|
 
|
|
Sets/returns the current line which the cursor is on.
In query mode, this flag needs a value.
|
|