Notifications
Clear all

[Closed] How do I set the scale of a spinner

 vij

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

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

 vij

Thankyou zortech…That helped…repped.