Originally posted by ^Lele^
View Post
After 15 years of using Max I've learnt to never ask. Max works in mysterious ways after all : ))
glorybound
Here is the updated script.
it is under Autopath Elements name now
Code:
MacroScript AutosetpathElements category:"Mr.Max" toolTip:"Auto set path Elements " ( vr = renderers.current vr.output_on = true vr.output_splitgbuffer = true tempName =maxfilepath + Maxfilename trimedName= trimRight tempName ".max" btm_filename = trimedName + ".exr" tempmap = Bitmap 1 1 fileName:btm_filename save tempmap close tempmap vr.output_splitbitmap = tempmap vr.output_splitfilename = btm_filename deleteFile btm_filename )
Comment