|
You can use MaxScript for that.
1) To have autoKey to be on when max is starting :
In Max script startup directory (usually something like C:\Program Files\Autodesk\3ds Max xxxx\Scripts\Startup depending on your installation parameters) create a script (call it animOn.ms for example) with the following code inside :
animButtonState = true
Now when Max is starting the autoKey button is on.
2) To have autoKey to be on when loading a specific file :
Load the file a first time, execute the following command (in Maxscript listener or in the MaxScript command field in the top bottom of the interface) :
callbacks.addScript #filePostOpen "animButtonState = true" id:#autoKeyButtonOn persistent:true
and save the file again. Now, each time you are opening the file the autoKey button will be on.
If you don’t want any more the autoKey button to be on for this file, type the following command :
callbacks.removeScripts #filePostOpen id:#autoKeyButtonOn
and save the file again.
Hope it will help.
-amarhys
Max 2011, Win7-Pro 64.
NVidia GeForce GTX 460
Core i7 950 3.06Ghz, 24Gb Ram.
|