View Single Post
# 1 09-11-2008 , 03:31 PM
Registered User
Join Date: Nov 2008
Posts: 1

Python script runs twice from Menu or Hotkey

I have written a python save increment script for Maya to make the saves compatible with our pipeline. The script itself runs fine, and if run from the script editor, only runs once. When I attach a hotkey and a menu list, the script will run twice, the first time you use it. But only when Maya first starts. After that, it will just run once.

Below are the files I altered to make the scripts run:

userSetup.mel (all on one line):

menuItem -p "mainFileMenu" -l "EXC IncSave" -ia "" -c "python(\"import maya_incsave\"); python(\"maya_incsave.IncSave_Execute()\");";

userHotkeys.mel:

//Maya Preference 8.50 (Release 1)
//
//

hotkey -keyShortcut "0" -releaseName ("HfAttrSelect_Menu_revert");
hotkey -keyShortcut "s" -ctl -name ("EXC_SaveIncNameCommand");

userNamedCommands.mel:

//Maya Preference 8.50 (Release 1)
//
//

nameCommand
TAB-annotation "EXC_SaveIncNameCommand"
TAB-command ("EXC_SaveInc")
TABEXC_SaveIncNameCommand;

UserRunTimeCommands.mel:


//Maya Preference 8.50 (Release 1)
//
//

runTimeCommand
TAB-annotation "EXC Save Increment"
TAB-category "File"
TAB-command ("python(\"import maya_incsave\");\r\npython(\"maya_incsave.IncSave_ Execute()\");")
TABEXC_SaveInc;

and finally, attached is the python script, maya_incsave.py: It is called .mel, because I cannot upload a .py file! Please rename it to .py.

Can anyone tell me why this is running twice when Maya 2008 first starts, and then running once every time after?

Thanks.

Attached Files
File Type: mel maya_incsave.mel (3.7 KB, 269 views)

Thurman Merman