rollout testRollout "Test"
(
group "Test"
(
button btn_button "Press Me If You Can"
spinner spn_spinner "Spin Me If You Can"
checkbox chk_checkbox "Check Me If You Can"
)--end group
)--end rollout
createDialog testRollout width:200
for c in testRollout.controls do print c
--loop through all controls in the rollout and --disable them all:
for c in testRollout.controls do c.enabled = false
|