@ulrik That TOTALLY worked, thank you so much!!
M
Best posts made by maxtownsley
-
RE: Export Issue 'Building targets in manual order is deprecated '
-
RE: Make a button start and stop a Lottie animation.
@aaronventure this did the trick ! many thanks!
//button const var Buttonx = Content.getComponent("Buttonx"); inline function onButtonxControl(component, value) { if (value) { // Button pressed, start animation p.startTimer(1000.0 / object.frameRate); } else { // Button released, stop the animation p.stopTimer(); } } Content.getComponent("Buttonx").setControlCallback(onButtonxControl);
-
RE: Make a button start and stop a Lottie animation.
@aaronventure amazing, thank you!!! will try when I get home