HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. hyperphonias
    3. Posts
    H
    • Profile
    • Following 0
    • Followers 0
    • Topics 10
    • Posts 40
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: Recompiled Hise

      @HISEnberg I see I see thanks for helping, since you're there i'm asking you this because I'm searching thru the forum and I can't find it.

      I want to control these 2 frequencies at the same time to make a Solo button, but I don't know how i'm supposed to control them both at the same since you can put only 1 ProcessorID.

      df14e22c-7c53-4730-8212-d58822954a13-image.png

      posted in ScriptNode
      H
      hyperphonias
    • RE: Recompiled Hise

      @HISEnberg Wow thank you bro appreciate, last question (im sorry for bothering its really to gain time ^^'), is it possible to make it go from top to bottom rather than bottom to top?

      posted in ScriptNode
      H
      hyperphonias
    • RE: Control ScriptFX using code

      @d-healey oh yeah you're right I was at the top of the block not of the entire dsp sorry

      posted in Newbie League
      H
      hyperphonias
    • RE: Control ScriptFX using code

      @d-healey hmmm, I think im missing something?

      6424dfb3-b299-4295-98da-ac43d07eb8e5-image.png

      posted in Newbie League
      H
      hyperphonias
    • RE: Control ScriptFX using code

      @d-healey oh how you did it with processor and parameter ID?

      posted in Newbie League
      H
      hyperphonias
    • RE: Control ScriptFX using code

      @d-healey to control with processor and parameter ID you need to compile the dsp network first

      posted in Newbie League
      H
      hyperphonias
    • Control ScriptFX using code

      Hello, I'm very new and i'm trying to figure out how to control a knob without compiling the dsp network.

      My goal is to control this in the UI
      bb9d3e27-b1c5-46bf-a594-4d435c87b7be-image.png

      To control any parameter, thanks
      1065e411-244f-47b7-b98d-8f3c52b5b017-image.png

      posted in Newbie League
      H
      hyperphonias
    • RE: Recompiled Hise

      @HISEnberg Hello thanks for replying i know im late i just tried it and its so easy thank you very much, do you know if its possible to make it smoother? because i feel l ike its just spawning and despawning from nowhere

      posted in ScriptNode
      H
      hyperphonias
    • RE: LAF issue

      @Chazrox thank you, and about vertical VU Meters, or vertical reduction meter? because i have my own expander node but don't know if its going to work, maybe the compressor thing will work?

      posted in Scripting
      H
      hyperphonias
    • RE: LAF issue

      @d-healey by the way on bitwig or any daw i can't make macros with hise plugins is there is a way to fix this? 5346b7f0-1e38-4834-8838-11c328adbfdc-image.png

      posted in Scripting
      H
      hyperphonias
    • RE: LAF issue

      @d-healey it works thank you, i made a denoiser using DSP network, i recompiled hise to create expanders nodes, and split them and added them and now i've got a cool denoiser plugin5a573c69-44b0-4db9-ba17-d47123bf94ef-image.png

      posted in Scripting
      H
      hyperphonias
    • RE: LAF issue

      @d-healey yup it works, im just kinda stuck on the positionning of the text so yeah

      posted in Scripting
      H
      hyperphonias
    • RE: LAF issue

      @d-healey no it actually works but my hise version is from a few months ago so thats why, but i searched up in api and its in there

      posted in Scripting
      H
      hyperphonias
    • RE: LAF issue

      @d-healey yeah i mean its because i recompiled hise and stuff so this is why i dont really update lol

      posted in Scripting
      H
      hyperphonias
    • RE: LAF issue

      @d-healey hello, i might be in a outdated version no? since when does this work

      posted in Scripting
      H
      hyperphonias
    • RE: LAF issue

      @d-healey can you teach me how to do it sorry i'm kinda newbie i just followed a few tuts

      here's my script:

      const laf = Engine.createGlobalScriptLookAndFeel();

      laf.registerFunction("drawRotarySlider", function(g, obj)
      {
      var a = obj.area;

      g.setColour(obj.bgColour);
      g.fillEllipse(a);
      
      g.setColour(obj.itemColour1);
      g.fillEllipse([10, 10, a[2] - 20, a[3] - 20 ]);
      
      var start = 2.5;
      var end = start * 2 * obj.valueNormalized - start;
      
      g.rotate(end, [a[2] / 2, a[3] / 2]);
      
      g.setColour(obj.itemColour2);
      g.fillRoundedRectangle([a[2] / 2 - 8 / 2, 8, 11, 69], 5);
      

      });

      posted in Scripting
      H
      hyperphonias
    • RE: LAF issue

      @d-healey heree91e8c51-18e0-456a-a2c6-936fc57eca4c-image.png

      posted in Scripting
      H
      hyperphonias
    • LAF issue

      Hello, so i made a rotary knob using LAF, everything is good but i'm making a label to the value, so, it works, but when i link my rotary knob to a HardcodedMasterFX, it doesn't work anymore

      here's my code and thanks for helping:

      const var ThresholdKnob = Content.getComponent("low_thresh");
      const var LabelThreshold = Content.getComponent("low_label");

      inline function onThresholdKnobControl(component, value)
      {
      LabelThreshold.set("text", Engine.doubleToString(value, 1) + " dB");
      };

      ThresholdKnob.setControlCallback(onThresholdKnobControl);

      posted in Scripting
      H
      hyperphonias
    • RE: Compressor

      @ustk you know in the oninit interface, you can include files, i wonder how you create these files

      posted in General Questions
      H
      hyperphonias
    • RE: Compressor

      @ustk not a dsp network

      posted in General Questions
      H
      hyperphonias