Notifications
Clear all

[Closed] timeCallback execute with buttonUp?

is there a way to execute a function when the time slider button is released? I have a time callback function registered to update a rolloutFloater with a timechange, but I’d rather do it with just a release of the time slider. right now it’s slowing down the UI with multiple updates to the floater.

1 Reply

hi,

I don’t think there’s a way to know when the timeslider button is released but you could work around that with a timer, so that the update only happens after some time. have the timecallback activate and reset the timer, and on the timer handler have it call the update and turn the timer off.

hOpe this helps,
o