Notifications
Clear all
[Closed] How do I set the scale of a spinner
Mar 14, 2008 9:36 am
How do I set the scale of a spinner while creating them with rolloutCreator? I want it to increment by 1 and not 0.1.
Thanks
vij
2 Replies
Mar 14, 2008 9:36 am
You can pass additional parameters by using the “paramStr:” command. For the spinner, this should work.
rci = rolloutCreator “myRollout” “My Rollout”
rci.begin()
rci.addControl #spinner #mySpinner “My Spinner” paramStr:“range:[0,100,1]”
rci.end()
createDialog rci.def