Notifications
Clear all

[Closed] Maxscript Rendering control

Hi,

I have a question about controling rendering with script.
Actually I’m trying to control which frames are rendered with rendPickupFrames, but it seems to no work.

Any idea ?

Bolbacool

2 Replies

from maxscript online reference:


rendPickupFrames – string

Get/set the Frames string in the ‘Common Parameters’ rollup of the Render Scene dialog.

so if you want to set it to 1 and 4:

rendPickupFrames “1,4”

make sure the Render Scene dialog is closed, otherwise this call won’t be sticky. In max5 you can say:
renderSceneDialog.close() to make sure it’s closed.

For more info on this see the renderSceneDialog topic in the online reference…

ok, it was because the render dialog window was open
thanks !