Your Ad Here

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

Synopsis

cmdScrollFieldExecuter [-appendText string] [-clear] [-copySelection] [-currentLine int] [-cutSelection] [-execute] [-executeAll] [-hasFocus] [-hasSelection] [-insertText string] [-load] [-loadContents string] [-pasteSelection] [-redo] [-removeStoredContents string] [-replaceAll string string] [-saveSelection string] [-saveSelectionToShelf] [-searchAndSelect] [-searchDown boolean] [-searchMatchCase boolean] [-searchString string] [-select int int] [-selectAll] [-selectedText] [-showLineNumbers boolean] [-source] [-sourceType string] [-storeContents string] [-text string] [-textLength] [-undo]

cmdScrollFieldExecuter is undoable, queryable, and editable.

A script editor executer control used to issue script commands to Maya.

Flags

appendText, clear, copySelection, currentLine, cutSelection, execute, executeAll, hasFocus, hasSelection, insertText, load, loadContents, pasteSelection, redo, removeStoredContents, replaceAll, saveSelection, saveSelectionToShelf, searchAndSelect, searchDown, searchMatchCase, searchString, select, selectAll, selectedText, showLineNumbers, source, sourceType, storeContents, text, textLength, undo
Long name (short name) [argument types] Properties
-load(-ld) createedit
Prompts the user for a script to load into this field.
-source(-src) createedit
Prompts the user for a script to source (execute without loading).
-saveSelection(-sv) string createedit
Prompts to save the current selection to a file. The default filename prompt will be prepended with the given string.
-saveSelectionToShelf(-svs) createedit
Prompts to save the current selection to an item in the shelf.
-selectAll(-sla) createedit
Selects all text.
-select(-sl) int int createedit
Selects text within a specified range.
-hasSelection(-hsl) query
Whether this control currently has a selection or not.

In query mode, this flag needs a value.

-selectedText(-slt) query
The text in the current selection range.

In query mode, this flag needs a value.

-clear(-clr) createedit
Clears the field.
-text(-t) string createqueryedit
Replaces the field text with the given string.

In query mode, this flag needs a value.

-textLength(-tl) query
The number of characters in this text field.

In query mode, this flag needs a value.

-cutSelection(-ct) createedit
Cuts the current selection from this field.
-copySelection(-cp) createedit
Copies the current selection from this field.
-pasteSelection(-pst) createedit
Pastes text into this field at the current caret position.
-hasFocus(-hf) query
Whether this control is currently in focus.

In query mode, this flag needs a value.

-undo(-ud) createedit
Undo the last operation (Currently supported on Windows/Mac Only)
-redo(-rd) createedit
Redo the last operation (Currently supported on Windows/Mac Only)
-execute(-exc) createedit
Executes the currentl selection.
-executeAll(-exa) createedit
Executes all text in the current executer control.
-storeContents(-stc) string createedit
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 createedit
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 createedit
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 createedit
Appends text to the end of this field.
-insertText(-it) string createedit
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 createquery
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 createqueryedit
Shows/hides the line numbes column.

In query mode, this flag needs a value.

-searchDown(-sd) boolean createqueryedit
Specifies whether to search from the cursor down, or up.

In query mode, this flag needs a value.

-searchMatchCase(-smc) boolean createqueryedit
Specifies whether the search is to be case sensitive or not.

In query mode, this flag needs a value.

-searchString(-ss) string createqueryedit
Specifies the string to search for.

In query mode, this flag needs a value.

-searchAndSelect(-sas) query
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 createedit
Replaces all instances of the first string in the field text with the second string.
-currentLine(-cl) int createqueryedit
Sets/returns the current line which the cursor is on.

In query mode, this flag needs a value.


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

Return value

None

MEL examples

// this will create a tiny window with a script command executer.
window;
    columnLayout;
        cmdScrollFieldExecuter -width 200 -height 100;
showWindow;

  

Return to Autodesk Index


Your Ad Here