Notifications
Clear all

[Closed] Rightclick spinner reset? Which command?

Hey Guys, im trying to figure out how to add code for my spinner, so that when your rightclick it it resets the zero and preforms an operation. How do i do
something like the following…

on myspinner rightclick do

2 Replies

not possible as far as i know

but you can do something like this

on spinner changed value do
(
if value == 0 then
(
–do stuff
)
)

so when you rightclick the spinner and it’s reset to zero, the code will be executed… but obviously this way it will also be executed when you drag the slider to zero or manually enter zero

ok cool, that will work, thanks