ジャンプ先: 概要. 戻り値.
フラグ. Python 例.
cmdScrollFieldExecuter([appendText=string], [clear=boolean], [commandCompletion=boolean],
[copySelection=boolean],
[currentLine=uint], [cutSelection=boolean], [execute=boolean], [executeAll=boolean], [filterKeyPress=script], [hasFocus=boolean], [hasSelection=boolean], [insertText=string], [load=boolean], [loadContents=string], [numberOfLines=uint], [objectPathCompletion=boolean],
[pasteSelection=boolean],
[redo=boolean], [removeStoredContents=string],
[replaceAll=[string, string]],
[saveSelection=string],
[saveSelectionToShelf=boolean],
[searchAndSelect=boolean],
[searchDown=boolean],
[searchMatchCase=boolean],
[searchString=string],
[searchWraps=boolean],
[select=[uint, uint]], [selectAll=boolean], [selectedText=boolean], [showLineNumbers=boolean],
[showTooltipHelp=boolean],
[source=boolean], [sourceType=string], [spacesPerTab=uint], [storeContents=string], [tabsForIndent=boolean], [text=string], [textLength=boolean], [undo=boolean])
注意:
オブジェクト名や引数を表す文字列はカンマで区切ります。これは概要には示されていません。
cmdScrollFieldExecuter は 「元に戻す」が可能、「照会」が可能、「編集」が可能 です。
Maya に対してスクリプト コマンドを発行するために使用するスクリプト エディタ エクゼキュータ コントロールです。
戻り値の型は照会モードでは照会フラグが基になります。
appendText, clear, commandCompletion, copySelection, currentLine, cutSelection, execute, executeAll, filterKeyPress, hasFocus, hasSelection, insertText, load,
loadContents, numberOfLines, objectPathCompletion, pasteSelection, redo, removeStoredContents, replaceAll, saveSelection, saveSelectionToShelf, searchAndSelect, searchDown, searchMatchCase, searchString, searchWraps, select, selectAll,
selectedText, showLineNumbers, showTooltipHelp, source, sourceType,
spacesPerTab, storeContents, tabsForIndent, text, textLength,
undo
: コマンドの作成モードで使用可能なフラグ |
: コマンドの編集モードで使用可能なフラグ |
: コマンドの照会モードで使用可能なフラグ |
: タプルまたはリストとして渡された複数の引数を持てるフラグ |
import maya.cmds as cmds
# this will create a tiny window with a Mel command executer.
cmds.window()
cmds.columnLayout()
cmds.cmdScrollFieldExecuter(width=200, height=100)
cmds.showWindow()
# this will create a tiny window with a Python command executer.
cmds.window()
cmds.columnLayout()
cmds.cmdScrollFieldExecuter(width=200, height=100, sourceType="python")
cmds.showWindow()