> Replacing the every tick events in this capx is hardly an effort..
>
And how would you modify that capx to not use every tick for example?
> If you were to set the slider-bar invisible and use sprites to influence it, it would be much the same as the link I gave except for the extra slider-bar object..
>
Yeah, expect for the fact that the stupid sliderbar stops working if you set it to invisible.... I'm not sure if that's a bug, or if it's supposed to be that way, but it just doesn't work while invisible....
By replacing conditions and/or adding more..
instead of every tick you could use is touching or is mouse button down which would limit the updates to the time change is possible..
you could use on mouse button released or on any touch end to change the animations..
you could add an extra variable OldValue and have actions triggered only when value is different from value..
It would all depend on your needs, but the trick is adding extra conditions or changing the ones already there..
I'm working with this example myself, changing the object on which it has influence with the scroll-button of the mouse, updating the shown value depending on the attached variables to the object. I also try to limit every tick events and the above methods are some of the ones I've used..