How maya call some commands or procs that does not exist??
Im sure all of you have noticed this, some commands or procs that maya calls does not exist or should I say they are not been defined and you can not find any infomation of those in maya docs, what I mean not been defined is if you try to search that particular string in whole maya directory the result will be no match(find string in all files). So where are those cammands or procs coming from?
For example: //you have to echo all commands to see these
you click [Show] menu in model panel and then [Isolate Select], [Auto Load New Objects]
CODE
editMenuUpdate MayaWindow|mainEditMenu;
updateShowMenu MayaWindow|mayaMainWindowForm|formLayout3|viewPanes|modelPanel4|menu33 modelPanel4;
updateShowMenu MayaWindow|mayaMainWindowForm|formLayout3|viewPanes|modelPanel4|menu33 modelPanel4;
updateIsolateMenu MayaWindow|mayaMainWindowForm|formLayout3|viewPanes|modelPanel4|menu33|menuItem1284 modelPanel4 modelPanel4;
isoSelectAutoAddNewObjs modelPanel4 1;
editMenuUpdate MayaWindow|mainEditMenu;
and if you try to search "updateShowMenu", "updateIsolateMenu", "isoSelectAutoAddNewObjs" these strings, you'll get nothing
So can anyone tell me where and how to find those commands or procs and how to use them?
Thanks in advance!