Maxscript open windows with specify tab

Good Morning at all,
I'm trying to make a very easy thing but without finding the solution.
I make a small panel with some buttons , I would that when I click, on one of these bottons, it open the render dialog in a specific vray tab (setting for exemple..
it's possible?

I have script this, but this open only the render dialog...

on XXXX pressed do
(
actionMan.executeAction 0 "60010"
)

THANKS

Comments

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.
barigazy's picture

try this

on XXXX pressed do
(
    renderSceneDialog.open()
    tabbedDialogs.setCurrentPage #render 4 -- "settings" tab
)

for more info read this topics in MXS Help
http://docs.autodesk.com/3DSMAX/15/ENU/MAXScript-Help/index.html?url=fil...
http://docs.autodesk.com/3DSMAX/15/ENU/MAXScript-Help/index.html?url=fil...

bga

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.