HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. pcs800
    3. Best
    • Profile
    • Following 0
    • Followers 0
    • Topics 47
    • Posts 281
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: Convolution reverb wet level seemingly not working

      @d-healey That seems to have worked, thanks again.

      posted in General Questions
      pcs800P
      pcs800
    • RE: Error in visual studio when building hise

      @d-healey Nah, I will stay with this one. It works, and I need to get to work on why I came in here today in the first place.
      I appreciate you sticking with me on this David. You're a saint ;-)
      Release build successful, BTW

      posted in General Questions
      pcs800P
      pcs800
    • RE: Error in visual studio when building hise

      @dannytaurus yes I noticed that. I'll try may 30th again.

      posted in General Questions
      pcs800P
      pcs800
    • RE: Error in visual studio when building hise

      @d-healey I guess I will start from scratch with the new video and see what happens.
      I'll let you know.

      posted in General Questions
      pcs800P
      pcs800
    • RE: Sticky knobs

      @d-healey I found it, sorry I should have checked into it before posting

      posted in General Questions
      pcs800P
      pcs800
    • RE: Sticky knobs

      @d-healey Ok, I got it built and it runs fine. The sticky knob problem is gone.
      However, when i go to export as fx plugin, I get a window which says "hise path not set". What does that mean?

      posted in General Questions
      pcs800P
      pcs800
    • RE: Faust installation

      @d-healey I figured it out and it's compiling now, thanks! :-)

      posted in General Questions
      pcs800P
      pcs800
    • RE: Errors when exporting to vst3

      @pcs800 I deleted the license file and xml file, and that fixed it. I will have to figure out licensing at some point.

      posted in General Questions
      pcs800P
      pcs800
    • Demo mode and registration

      How does everyone go about adding a demo mode and registration method to your plugins?

      posted in General Questions
      pcs800P
      pcs800
    • RE: The delay module temposync slider popup

      @d-healey Sure, I will PM you a link

      posted in General Questions
      pcs800P
      pcs800
    • RE: The delay module temposync slider popup

      @d-healey Thank you! It works now!

      posted in General Questions
      pcs800P
      pcs800
    • RE: Linking knobs together via a button

      @d-healey It is now working with the help of some online resources

      posted in General Questions
      pcs800P
      pcs800
    • RE: Linking knobs together via a button

      @Chazrox I watched a lot of the video above, and others.
      I now have a script that works as intended.

      Content.makeFrontInterface(566, 300);
      
      const var LDelay = Content.getComponent("LDelay1");
      const var RDelay = Content.getComponent("RDelay1");
      const var LFeedback = Content.getComponent("LFeedback");
      const var RFeedback = Content.getComponent("RFeedback");
      const var linkButton = Content.getComponent("LinkButton");
      
      inline function onLDelayControl(component, value)
      {
          if (linkButton.getValue()) 
          {
              RDelay.setValueNormalized(LDelay.getValueNormalized());
          }
      }
      
      inline function onRDelayControl(component, value)
      {
          if (linkButton.getValue()) 
          {
              LDelay.setValueNormalized(RDelay.getValueNormalized());
          }
      }
      
      inline function onLFeedbackControl(component, value)
      {
          if (linkButton.getValue()) 
          {
              RFeedback.setValueNormalized(LFeedback.getValueNormalized());
          }
      }
      
      inline function onRFeedbackControl(component, value)
      {
          if (linkButton.getValue()) 
          {
              LFeedback.setValueNormalized(RFeedback.getValueNormalized());
          }
      }
      
      LDelay.setControlCallback(onLDelayControl);
      RDelay.setControlCallback(onRDelayControl);
      LFeedback.setControlCallback(onLFeedbackControl);
      RFeedback.setControlCallback(onRFeedbackControl);
      
      posted in General Questions
      pcs800P
      pcs800
    • RE: Code to load ir files is not working

      @Chazrox Wow, upper/lower case is killing me here. Thank you for taking the time to reply.

      posted in General Questions
      pcs800P
      pcs800
    • RE: Linking knobs together via a button

      @d-healey
      I guess I am not building this plugin yet. I need to understand more of the coding language. I do not know how to use a control callback. I'll start with your video above.

      posted in General Questions
      pcs800P
      pcs800
    • RE: How to calculate min and max for controlling module parameters

      @d-healey
      Ok, i did not know that. Thanks

      posted in General Questions
      pcs800P
      pcs800
    • RE: Adding a second action to a button

      @d-healey
      I've got it working now, thanks

      posted in General Questions
      pcs800P
      pcs800
    • RE: Buffer warning when plugin runs

      @DanH Worked perfectly, thanks!

      posted in General Questions
      pcs800P
      pcs800
    • RE: Using a finished project as a template

      @d-healey Enjoy your lunch!

      posted in General Questions
      pcs800P
      pcs800
    • RE: Sample player plugin not making sound

      @d-healey That worked, thank you very much....again.

      posted in General Questions
      pcs800P
      pcs800