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

    maxtownsley

    @maxtownsley

    3
    Reputation
    7
    Profile views
    16
    Posts
    1
    Followers
    0
    Following
    Joined
    Last Online

    maxtownsley Unfollow Follow

    Best posts made by maxtownsley

    • 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

    Latest posts made by maxtownsley

    • 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: Export Issue 'Building targets in manual order is deprecated '

      @ulrik ok thanks, trying this shortly

      posted in General Questions
      M
      maxtownsley
    • RE: Export Issue 'Building targets in manual order is deprecated '

      @d-healey I did, and that didn't do anything. Im gonna try Xcode 13

      posted in General Questions
      M
      maxtownsley
    • RE: Export Issue 'Building targets in manual order is deprecated '

      @d-healey On my MacBook it will only let me run the new Xcode. VERSION 15

      The cycle in dependencies is apparently in the 'ProjectName - Shared Code' folder. I really have no clue.

      posted in General Questions
      M
      maxtownsley
    • Export Issue 'Building targets in manual order is deprecated '

      I successfully exported my instrument as a standalone plugin. When I try to export as AU or VST I get this error in the terminal:

      Building targets in manual order is deprecated - check "Parallelize build for command-line builds" in the project editor, or set DISABLE_MANUAL_TARGET_ORDER_BUILD_WARNING in any of the targets in the current build to suppress this warning

      ❌ error: Cycle in dependencies detected, but could not be parsed. Please file a bug report with the build transcript and how to reproduce the cycle if possible.

      Build Carbon Resources build phases are no longer supported.  Rez source files should be moved to the Copy Bundle Resources build phase. (in target 'ProjectName - AU' from project 'ProjectName')
      

      Does anyone have any solutions for me? Thanks for any help!

      posted in General Questions
      M
      maxtownsley
    • RE: Confusing issue with scripting simple knob for AHDSR Envelope Knob

      @d-healey Amazing, thanks!!

      posted in Scripting
      M
      maxtownsley
    • RE: Confusing issue with scripting simple knob for AHDSR Envelope Knob

      @d-healey because I am actually linking the one knob to 3 different envelopes

      posted in Scripting
      M
      maxtownsley
    • Analyser and Floating Tile options for user

      Is it possible to script this?
      Trying to allow the user to select from a combobox the different Preview Types and have them change and display on the floating tile. Ive managed to link the combobox to the Analyser, however with the built in capabilities, HISE wants either 0, 1 or 2 option for what to display in the tile. I know there must be a way to script it but I don't know what it is. Thanks for any help!

      posted in Scripting
      M
      maxtownsley
    • Envelope on Moog LP Filter makes a lot of pops and noise

      Hi, this is the only Filter that seems to behave this way when using a Simple envelope or AHDSR envelope to modulate it. Any idea why? Thanks!

      posted in General Questions
      M
      maxtownsley
    • RE: Confusing issue with scripting simple knob for AHDSR Envelope Knob

      Nevermind, I got it with this...

      inline function onKnbAttackEnvControl(component, value)
      {
      AHDSREnvelope1.setAttribute(AHDSREnvelope1.Attack, value);
      };

      posted in Scripting
      M
      maxtownsley