Provides the functionality to save and load menuSets between sessions of Maya. For Internal Use Only! In query mode, return type is based on queried flag.
Long name (short name) | Argument Types | Properties | |
---|---|---|---|
exists (e) | bool | ||
|
|||
force (f) | bool | ||
|
|||
loadAll (la) | bool | ||
Loads all the menuSets from the preferences file only if the preferences version matches, or the -force flag is enabled. On successful load, of a prefs file, an empty string is returned, otherwise, a description of the problem encountered is returned. |
|||
removeAll (ra) | bool | ||
|
|||
saveAll (sa) | bool | ||
|
|||
saveBackup (sb) | bool | ||
|
|||
version (v) | bool | ||
The base version string which is saved out to file. It is also checked upon loading in order to indicate changes in the default prefs since the prefs were last saved out.Flag can appear in Create mode of commandFlag can have multiple arguments, passed either as a tuple or a list. |
Derived from mel command maya.cmds.menuSetPref
Example:
import pymel.core as pm
import maya.cmds as cmds
# saving the current menuSets
pm.menuSetPref( saveAll=True )
# loading to the current menuSets if they exist
if pm.menuSetPref(exists=True) :
pm.menuSetPref(loadAll=True)
# in certain cases, you may wish to remove previous preferences before saving
pm.menuSetPref( removeAll=True )
pymel.core.windows.messageLine
Enter search terms or a module, class or function name.