Notifications
Clear all
[Closed] Native tab layout for rollouts
Jul 17, 2020 4:42 pm
Hi, does anyone know how to replicate this via maxscript?
with the below code you can see the docking status and the position, however you can’t set the position after you have registered the rollout
try cui.UnRegisterDialogBar testroll catch() ;
try destroydialog testroll catch();
rollout testroll "testrollout" (
button opf "Prog"
on opf pressed do (
print (cui.getDockState testroll)
print (GetDialogPos testroll)
)
)
createDialog testroll 115 815
cui.registerdialogbar testroll style:#(#cui_dock_all)
cui.DockDialogBar testroll #cui_dock_left
i saw various examples of tabbed rollouts in this forum either using mxs or dotnet but that’s not what i’m after, i already have the rollouts separated and working, i just want to dock them!
i think the broblem stands on the “cui.DockDialogBar testroll #cui_dock_left ” and doesn’t seems to have a method to dock multiple rollouts one over another in a tabbed layout.
thankyou