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

    Posts

    Recent Best Controversial
    • 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
    • RE: Compressor

      @HISEnberg thank you I seen it i'm kinda lost im trying to understand quit a bit (im a newbie on hise) I wanted to know, how can I add a new script im stuck im trying to figure out94ca67ec-f014-47b6-a3d5-044447141b26-image.png

      posted in General Questions
      H
      hyperphonias
    • Compressor

      Hello i was wondering how in HISE i can make a compressor graph looking like this?
      Also i recompiled the jcompressor fx I made a knee, so I wanted to know how I can make that smooth curve too
      thanks and sorry for bothering

      0830328f-7bf8-47ae-af74-7576d2ed9219-image.png

      posted in General Questions
      H
      hyperphonias
    • Recompiled Hise

      Hello, i just made an Expander node, but i was wondering if I try to make a reduction meter its going to work or I have to recompile other stuff. if i don't need to recompile, how can I make a Reduction meter.

      Thanks
      9571c609-11d1-450b-9c39-5317df32fa09-image.png

      posted in ScriptNode
      H
      hyperphonias
    • RE: Multiband Compressor UI

      @d-healey i saw that too, it is interesing, but i would like to do all the compression stuff using scriptnode with the template, do you think its possible? btw any snippets for help is very kind. thanks

      posted in ScriptNode
      H
      hyperphonias
    • RE: Multiband Compressor UI

      @griffinboy hey, thanks for responding, i saw people posting snippets, how does snippets works?

      posted in ScriptNode
      H
      hyperphonias
    • Multiband Compressor UI

      hello, i wanted to know if its possible to create a MBC UI without a lot of code, so with built in features mostly

      posted in ScriptNode
      H
      hyperphonias
    • Look and Feel value display issue

      Hello, recently i'm trying to spend more time in the gui conception for my plugins but i'm having an issue right over there.

      I can't see anymore the value of the knob.

      I tried something but when it compiles the value changes but when I rotate the knob the value doesn't change

      6a17e5ef-558c-491e-b8ba-056d3db5e487-image.png

      Here's the code that i added after the laf thing

      ba81da93-27b4-4a66-b318-56cf5615f477-image.png

      posted in Scripting
      H
      hyperphonias
    • RE: Dynamic EQ

      @orange hello, i know im late, but i want to make a range for a De-Esser or so, but the topic was about dynamic ranges?

      posted in General Questions
      H
      hyperphonias