Go to: Synopsis. Return value. Flags. Python examples.
assignCommand(
int
, [addDivider=string], [altModifier=boolean], [annotation=string], [command=script], [commandModifier=boolean], [ctrlModifier=boolean], [data1=string], [data2=string], [data3=string], [delete=int], [dividerString=string], [factorySettings=boolean], [index=int], [keyString=string], [keyUp=boolean], [name=boolean], [numDividersPreceding=int], [numElements=boolean], [optionModifier=boolean], [sortByKey=boolean], [sourceUserCommands=boolean])
Note: Strings representing object names and arguments must be separated by commas. This is not depicted in the synopsis.
assignCommand is undoable, queryable, and editable.
This command allows the user to assign hotkeys and manipulate the internal
array of named command objects. Each object in the array has an 1-based
index which is used for referencing. Under expected usage you should
not need to use this command directly as the Hotkey Editor may be used
to assign hotkeys.
This command is obsolete for setting new hotkeys, instead please use the "hotkey" command.
None
In query mode, return type is based on queried flag.
addDivider, altModifier, annotation, command, commandModifier, ctrlModifier, data1, data2, data3, delete, dividerString, factorySettings, index, keyString, keyUp, name, numDividersPreceding, numElements, optionModifier, sortByKey, sourceUserCommands
Long name (short name) |
Argument types |
Properties |
|
addDivider(ad)
|
string
|
|
|
Appends an "annotated divider" item to the end of the list of
commands.
|
|
altModifier(alt)
|
boolean
|
|
|
This flag specifies if an alt modifier is used for the key.
|
|
annotation(ann)
|
string
|
|
|
The string is the english name describing the command.
|
|
command(c)
|
script
|
|
|
This is the command that is executed when this object is
mapped to a key or menuItem.
|
|
commandModifier(cmd)
|
boolean
|
|
|
This flag specifies if a command modifier is used for the key.
This is only available on systems which support a separate command key.
|
|
ctrlModifier(ctl)
|
boolean
|
|
|
This flag specifies if a ctrl modifier is used for the key.
|
|
data1(da1)
|
string
|
|
|
Optional, user-defined data strings may be attached to
the nameCommand objects.
|
|
data2(da2)
|
string
|
|
|
Optional, user-defined data strings may be attached to
the nameCommand objects.
|
|
data3(da3)
|
string
|
|
|
Optional, user-defined data strings may be attached to
the nameCommand objects.
|
|
delete(d)
|
int
|
|
|
This tells the Manager to delete the object at position index.
|
|
dividerString(ds)
|
string
|
|
|
If the passed index corresponds to a "divider" item, then the
divider's annotation is returned. Otherwise, a null string is
returned.
|
|
factorySettings(fs)
|
boolean
|
|
|
This flag sets the manager back to factory settings.
|
|
index(i)
|
int
|
|
|
The index of the object to operate on. The index value
ranges from 1 to the number of name command objects.
|
|
keyString(k)
|
string
|
|
|
This specifies a key to assign a command to in edit mode.
In query mode this flag returns the key string, modifiers and
indicates if the command is mapped to keyUp or keyDown.
|
|
keyUp(kup)
|
boolean
|
|
|
This flag specifies if the command is executed on keyUp
or keyDown.
|
|
name(n)
|
boolean
|
|
|
The name of the command object.
|
|
numDividersPreceding(ndp)
|
int
|
|
|
If the index of a namedCommand object C is passed in,
then this flag returns the number of "divider" items preceding
C when the namedCommands are sorted by category.
|
|
numElements(num)
|
boolean
|
|
|
This command returns the number of namedCommands in the system.
This flag doesn't require the index to be specified.
|
|
optionModifier(opt)
|
boolean
|
|
|
This flag specifies if an option modifier is used for the key.
|
|
sortByKey(sbk)
|
boolean
|
|
|
This key tells the manager to sort by key or by order of
creation.
|
|
sourceUserCommands(suc)
|
boolean
|
|
|
This command sources the user named command file.
|
|
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 have multiple arguments, passed either as a tuple or a list.
|
import maya.cmds as cmds
# Print out all the names of the named command objects and the
# hotkeys attached to them.
#
count = cmds.assignCommand(query=True, numElements=True)
print ('There are ' + str(count) + ' named command objects.')
for index in range(1, count+1):
keyString = cmds.assignCommand(index, query=True, keyString=True)
if 0 < len(keyString) and keyString[0] != "NONE":
displayString = '('
if "1" == keyString[2]: displayString += 'Ctrl+'
if "1" == keyString[1]: displayString += 'Alt+'
if "1" == keyString[5]: displayString += 'Command+'
displayString += keyString[0]
if "1" == keyString[3]: displayString += ' Release'
if "1" == keyString[4]: displayString += ' KeyRepeat'
displayString += ')'
print cmds.assignCommand(index, query=True, name=True), displayString