HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. pcs800
    3. Topics
    • Profile
    • Following 0
    • Followers 0
    • Topics 65
    • Posts 354
    • Groups 0

    Topics

    • pcs800P

      How can I daw lock my plugins?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      6
      0 Votes
      6 Posts
      65 Views
      HISEnbergH

      @pcs800 Looks like it is integrated into the HISE source code (included with the JUCE modules), but you would need to add you own API for this to communicate in HISE script, or edit the HISE source code to contain a version of the script you provided:

      https://github.com/christophhart/HISE/blob/01b810a9d31f032b30537b4767082732cd96f46e/JUCE/modules/juce_audio_processors/utilities/juce_PluginHostType.h#L38

      https://github.com/christophhart/HISE/blob/01b810a9d31f032b30537b4767082732cd96f46e/JUCE/modules/juce_audio_processors/utilities/juce_PluginHostType.cpp#L4

    • pcs800P

      Displaying sync delay time properly

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      6
      0 Votes
      6 Posts
      115 Views
      HISEnbergH

      @pcs800 Pretty similar issue. You are calling the repaint incorrectly here:

      inline function onKnob1Control(component, value) { currentTempoIndex = value; Panel1.repaint(); } Knob1.setControlCallback(onKnob1Control);

      So now you need to change Panel1 to displayPanel1 here and call the repaint on the control callback. This also means you will no longer need the timer on this panel since it will be your knob that is updating the panel, so you can remove this:

      displayPanel1.setTimerCallback(function() { this.repaint(); }); displayPanel1.startTimer(50);

      However there is one other thing important to understand. If you want to assign a knob callback with script, than you cannot use the property editor to assign the control anymore (the property editor is going to overwrite anything you are doing in the script).

      So if you want the knob to control the delay time still you are going to need to do that in the inline function:

      inline function onKnob1Control(component, value) { currentTempoIndex = value; displayPanel1.repaint(); // Fixed // Assign to the Delay knob } Knob1.setControlCallback(onKnob1Control);

      I think @d-healey ''s video here covers this but maybe there is another one I don't know about:

      https://www.youtube.com/watch?v=1rs0w4MDNA0

    • pcs800P

      Creating a pop out window with an eq or something on it

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      20
      0 Votes
      20 Posts
      1k Views
      ChazroxC

      @pcs800 oh great!

      @pcs800 said in Creating a pop out window with an eq or something on it:

      post the info

      up to you.

    • pcs800P

      Multi IR loader question

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      2
      0 Votes
      2 Posts
      697 Views
      d.healeyD

      @pcs800 Yeah if they are in the same chain then the signal will be processed serially. You could try using send effects instead, or use scriptnode for parallel processing.

    • pcs800P

      Getting label and value to show in customer slider graphic

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      5
      0 Votes
      5 Posts
      963 Views
      ChazroxC

      @pcs800 it has its own LAF essentially. You can easily re-create the same exact knob with your own LAF.

    • pcs800P

      Mono delay

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      9
      0 Votes
      9 Posts
      380 Views
      ChazroxC

      @ustk The generosity of the man.

    • pcs800P

      Snippet not working

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      19
      0 Votes
      19 Posts
      878 Views
      d.healeyD

      @pcs800 Just chain them up in the module tree, add the delay, then add the script effect below it.

    • pcs800P

      toggle Simple Reverb bypass

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      5
      0 Votes
      5 Posts
      172 Views
      pcs800P

      @d-healey Thank you

    • pcs800P

      Splitting incoming audio into two bands

      Watching Ignoring Scheduled Pinned Locked Moved ScriptNode
      7
      0 Votes
      7 Posts
      504 Views
      d.healeyD

      @pcs800 Check out my free HISE Bootcamp course - https://audiodevschool.com/courses/hise-bootcamp/

    • pcs800P

      Sample stops playing when key is released

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      4
      0 Votes
      4 Posts
      112 Views
      rglidesR

      @rglides and false if you want Normal mode

    • pcs800P

      Parameter Values not being shown in panels for frequency point other than 0

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      12
      0 Votes
      12 Posts
      1k Views
      pcs800P

      @d-healey @Christoph-Hart Can we please get Davids changes merged into a new build?
      I really need to get this project finished, and would hate to scrap it.

    • pcs800P

      Spectrum Analyzer gets stuck

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      21
      0 Votes
      21 Posts
      692 Views
      d.healeyD

      @pcs800 Content.createLocalLookAndFeel I think - check the API browser

    • pcs800P

      Plugin state not saved in daw

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      121 Views
      pcs800P

      @d-healey Yes David, adding the following has fixed the issue, thanks!

      // Ensure state is saved with user presets Engine.addModuleStateToUserPreset("Parametriq EQ1");
    • pcs800P

      UseCustomImage for aboutpage

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      2
      0 Votes
      2 Posts
      80 Views
      d.healeyD

      @pcs800 The documentation isn't clear so I had a look in the source code. What you need to do is add the background image you want to your project's Images folder and make sure the image name is "about.png".

      For the floating tile set UseCustomImage to true and it will automatically use the image.

      36d3607d-0a5d-4dca-842e-34db772fc9bb-image.png

      I've updated the docs in this PR

    • pcs800P

      How to specify text color

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      3
      0 Votes
      3 Posts
      127 Views
      Christoph HartC

      "#FFB7AA5B" is a hex representation of a colour with the #AARRGGBB format. You're almost there, you just need to turn that into an actual number with the hex format:

      const var RED = 0xFFFF0000; const var GREEN = 0xFF00FF00; // same as #FF00FF00 const var TRANSPARENT = 0; // shortcut for 0x00000000
    • pcs800P

      Documentation update

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      7
      0 Votes
      7 Posts
      283 Views
      ChazroxC

      @pcs800
      Here...
      Screenshot 2025-07-27 at 3.30.17 PM.png

      then add paramaters here...
      Screenshot 2025-07-27 at 3.30.11 PM.png

      if you want to be able to map GUI controls, make sure you're adding your paramters to the outer most level of your node chain.

      Whatever you add here for parameters, will be visible in your scriptFX property editor like any other module on your interface designer.

    • pcs800P

      Displaying scale factor

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      14
      0 Votes
      14 Posts
      370 Views
      ChazroxC

      @d-healey all good. Atleast I can still do what you did. Thats all I really needed.

    • pcs800P

      Convolution reverb wet level seemingly not working

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      17
      0 Votes
      17 Posts
      819 Views
      pcs800P

      @d-healey Yes i have such a thing already going. I guess I forgot to ad this one.

    • pcs800P

      Faust tutorial videos

      Watching Ignoring Scheduled Pinned Locked Moved Faust Development
      4
      0 Votes
      4 Posts
      322 Views
      A

      @pcs800 the best faust tutorials are unfortunately reading the source code of the library effects. Find it on github. Feed the main syntax docs into a good LLM like o3 or Gemini Pro, then ask it questions about the specific library effect that you're reading.

      Of course, read the whole syntax reference yourself first.