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

    Posts

    Recent Best Controversial
    • 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
    • RE: Sample player plugin not making sound

      @d-healey I will PM you the link in a second

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

      @d-healey Sure, how o I do that? Zip the entire thing and upload to google drive?

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

      @pcs800 I got it working!
      So I will use what I've done so far in Hise, and inno, as templates for the other plugin I plan to build.
      You're one heck of a help, d.healy

      posted in General Questions
      pcs800P
      pcs800
    • Another licensing question

      @Christoph-Hart
      The company I work for is considering buying a license for Hise.

      The company's main product is a DAW.
      The company makes more than 50,000/year already.
      I want to build plugins for the company and include them with the daw
      The licensing documentation suggests that we would need to buy a PRO license because the company makes over 50,000. Is this correct?
      I would think that if the product I create using Hise, makes more than 50,000 on it's own, then I would need the PRO license.
      Can you clear this up for me?

      posted in General Questions
      pcs800P
      pcs800
    • RE: Saving and accessing presets

      @d-healey Actually, I think I found the solution.
      In Hise, I open the browser, click a preset, the window closes. I open it again and click save, to resave the preset. This seems to work. I can click presets now and the window does not close.

      posted in General Questions
      pcs800P
      pcs800
    • RE: Adding a distortion knob

      @griffinboy Actually, a multiout drum instrument is in my future plans for Hise, so thanks for the warning.
      I do have three developers on my team who are totally familiar with juce, javascript, and C++. So I am sure I'll be bugging them when the time comes.

      posted in General Questions
      pcs800P
      pcs800