HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. maxtownsley
    3. Best
    M
    • Profile
    • Following 0
    • Followers 1
    • Topics 6
    • Posts 16
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: Export Issue 'Building targets in manual order is deprecated '

      @ulrik That TOTALLY worked, thank you so much!!

      posted in General Questions
      M
      maxtownsley
    • 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);
      
      
      
      posted in Scripting
      M
      maxtownsley
    • RE: Make a button start and stop a Lottie animation.

      @aaronventure amazing, thank you!!! will try when I get home

      posted in Scripting
      M
      maxtownsley