I must be blind, I can't find this option in max 2013. The rest of my co-workers have no interest in upgrading and are just sticking with 2012. I don't want to save-as and hit the drop-down box every single time before I check in a max file. Is there a way to set 2013 to just automatically save as 2012?
Try this: (Warning it will overwrite without asking, but that's the point right?) saveMaxFile (MaxFilePath + MaxFileName) saveAsVersion:2012 quiet:true I don't have 2012, but it works if I change it to 2011 and test that. BTW, you can paste that line of code into the listener, then select the line and drag an drop it to…
Great script. I like to save my Max files using the + button to save them in sequence instead of over writing the same file. Could this script be modified to save as 2012 files and to trigger to auto-save in a numbered sequence. thanks
Polygrinder: you can try this hack script. I call it a hack because it needs to add a scene node and assign it the scene name so that I can use the "uniqueName" method which only works on scene nodes. This gives me an incremented file name which I can save the scene with and then delete the node. I havent tested it much…
Copy the line, go into max, press F11, paste the line, then select it and drag it into the toolbar. Now every time you push that button it will execute the code.
The save incremental "max saveplus" command is separate, with no modifiable parameters for version or file name like "saveMaxFile". BUT the version might already be saved into the existing file and the save incremental command just caries it over like it does with a lot of the other settings? So you MIGHT need to just save…