HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. d.healey
    3. Posts
    • Profile
    • Following 1
    • Followers 68
    • Topics 1,032
    • Posts 21,725
    • Groups 1

    Posts

    Recent Best Controversial
    • RE: The delay module temposync slider popup

      @pcs800 If the controls are have saveInPreset enabled then they should be triggered automatically.

      posted in General Questions
      d.healeyD
      d.healey
    • RE: Font not changing on comboBox. What am I doing wrong?

      @VirtualVirgin I think it's broken, I always use laf.

      posted in General Questions
      d.healeyD
      d.healey
    • RE: The delay module temposync slider popup

      @pcs800 You don't need this

      const var LDelayParamID = 0;
      const var RDelayParamID = 1;
      const var LFeedbackParamID = 2;
      const var RFeedbackParamID = 3;
      

      HISE already has built in constants - you can find them by right clicking on the module header and selecting Dump parameter ID and values.

      Then you can use it like this Delay1.DelayTimeLeft.

      Your sync button isn't triggering the callback - Console.print is your friend here. You have the button connected via processor/parameter ID.

      posted in General Questions
      d.healeyD
      d.healey
    • RE: CPU stays up eventhough panel gets painted only once

      @Aueh What about if you use an image component for the shadow, perhaps that will work.

      posted in Scripting
      d.healeyD
      d.healey
    • RE: CPU stays up eventhough panel gets painted only once

      @Aueh What are you animating, is it a peak meter or something?

      posted in Scripting
      d.healeyD
      d.healey
    • RE: CPU stays up eventhough panel gets painted only once

      @Aueh Panels are repainted each time the screen is redrawn. If you have a panel with transparency over another panel then when it's repainted it will cause whatever is underneath to be redrawn.

      You can enable the opaque option for the top panel if you don't need transparency - it might help.

      Why are you repainting every 100ms?

      posted in Scripting
      d.healeyD
      d.healey
    • RE: The delay module temposync slider popup

      @pcs800 said in The delay module temposync slider popup:

      What is the property called that will display time mode?

      "mode"

      @pcs800 said in The delay module temposync slider popup:

      And is the component called "popupText"?

      There is no separate component. There is a showPopupValue property for knobs/sliders though.

      posted in General Questions
      d.healeyD
      d.healey
    • RE: Customise Combobox font with LAF?

      @LozPetts Have you put the font file in your project's Images folder?

      posted in Scripting
      d.healeyD
      d.healey
    • RE: The delay module temposync slider popup

      @pcs800 said in The delay module temposync slider popup:

      What about a script generated pop-up that changes depending on the tempo sync state?

      I haven't seen it done but I don't see why not.

      posted in General Questions
      d.healeyD
      d.healey
    • RE: I STILL cant compile DLL's // What am I doing wrong? // Taking all suggestions.

      @Chazrox said in I STILL cant compile DLL's // What am I doing wrong? // Taking all suggestions.:

      by this you mean, not move it from where its currently at?

      If it's within the HISE source code folder then yes.

      posted in General Questions
      d.healeyD
      d.healey
    • RE: I STILL cant compile DLL's // What am I doing wrong? // Taking all suggestions.

      @Chazrox I would keep the HISE binary within the HISE source code folder and make a shortcut in the applications folder (can you make shortcuts on MacOS?) or pin it to the app bar thingy.

      posted in General Questions
      d.healeyD
      d.healey
    • RE: I STILL cant compile DLL's // What am I doing wrong? // Taking all suggestions.

      @Chazrox why are there two network XML files and what is saturator.h?

      posted in General Questions
      d.healeyD
      d.healey
    • RE: I STILL cant compile DLL's // What am I doing wrong? // Taking all suggestions.

      @Chazrox Why allow polyphonic?

      posted in General Questions
      d.healeyD
      d.healey
    • RE: I STILL cant compile DLL's // What am I doing wrong? // Taking all suggestions.

      @Chazrox

      Make a new project.
      Add a script fx.
      Add a gain node to the network.
      Save the network.
      Enable Compilation.
      Try compiling the networks and tell me what happens, or make a video of the whole thing.

      posted in General Questions
      d.healeyD
      d.healey
    • RE: I STILL cant compile DLL's // What am I doing wrong? // Taking all suggestions.

      @Chazrox Are you able to compile plugins/standalone apps?

      posted in General Questions
      d.healeyD
      d.healey
    • RE: I STILL cant compile DLL's // What am I doing wrong? // Taking all suggestions.

      @Chazrox is it one project/network or all projects?

      posted in General Questions
      d.healeyD
      d.healey
    • RE: Engine.getSamplesForMilliseconds() not working

      @VirtualVirgin Nope, just a HISEism

      posted in Bug Reports
      d.healeyD
      d.healey
    • RE: Engine.getSamplesForMilliseconds() not working

      @VirtualVirgin MilliSeconds

      posted in Bug Reports
      d.healeyD
      d.healey
    • RE: The delay module temposync slider popup

      @pcs800 There are two methods, both require scripting. The first is to have two knobs, one in tempo sync mode, and one in time mode, both connected to delay, and you just show one of them at a time.

      The second method is to use a single knob and dynamically change its properties when the user switches modes.

      posted in General Questions
      d.healeyD
      d.healey
    • RE: Finding the range of HPF and LPF in the delay module

      @pcs800 Being filters I suspect the range is 20Hz - 20kHz

      posted in General Questions
      d.healeyD
      d.healey