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

    Topics

    • pcs800P

      Splitting incoming audio into two bands

      Watching Ignoring Scheduled Pinned Locked Moved ScriptNode
      7
      0 Votes
      7 Posts
      107 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
      45 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
      11
      0 Votes
      11 Posts
      111 Views
      pcs800P

      @d-healey I have no idea where to start on something like that. I guess i will wait for Christoph to integrate.

    • pcs800P

      Spectrum Analyzer gets stuck

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      21
      0 Votes
      21 Posts
      208 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
      70 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
      47 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
      51 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
      188 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
      168 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
      412 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
      127 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.

    • pcs800P

      Limiter reduction parameters

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

      @pcs800 also…Sometimes Console.print();-ing helps me find what something is doing. You can pretty much .print anything. Console. Print(); then just start moving stuff and playing stuff and see what happens.

    • pcs800P

      Error in visual studio when building hise

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      61
      0 Votes
      61 Posts
      2k Views
      pcs800P

      @d-healey Oh.... too late. I already deleted and redownloaded, etc. Building again now.

    • pcs800P

      I am unable to get an AudioAnalyser to display in a floating tile

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      4
      0 Votes
      4 Posts
      99 Views
      ChazroxC

      @pcs800 I think thats been happening for a while now. I've resorted to just using scriptnodeFX, add your analyser there, then I believe you can hook up a floating tile analyser via the property editor in the same way and that should be more stable.

    • pcs800P

      Sticky knobs

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      30
      0 Votes
      30 Posts
      986 Views
      d.healeyD

      @pcs800 No worries, it will help the next person who gets here :)

    • pcs800P

      Slider issue

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      12
      0 Votes
      12 Posts
      437 Views
      dannytaurusD

      @Chazrox said in Slider issue:

      @pcs800 Did u look into LAF for this? You can animate that slider cap still image with this easily. Lets say in your case you have the slider cap and the background image… import both images into your LAF function, draw the background image as still, then animate only the slider cap for current value. Its 2 parts (images) and 0 frames.

      Start with a vertical slider, create a Laf, import your two images then use g.drawImage to use your images in your LAF. Im on my phone right now so when I get on the computer I can show you an example. It's pretty friggin simple.

      Definitely this 👆

      @pcs800 Sounds like you might be making it a lot harder than it needs to be.

    • pcs800P

      LimiterReduction parameter

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      4
      0 Votes
      4 Posts
      125 Views
      HISEnbergH

      @pcs800 If my memory serves me correct I believe this HISE tutorial shows you how to display compression amount:

      Link Preview Image hise_tutorial/DynamicsFX at master · christophhart/hise_tutorial

      The Tutorial project for HISE. Contribute to christophhart/hise_tutorial development by creating an account on GitHub.

      favicon

      GitHub (github.com)

    • pcs800P

      Curve type in a parametric

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      149 Views
      d.healeyD

      Ah ok I see the issue. I assume you're connecting the button to the module through processor/parameter ID? The button only has two states, 0 and 1, so it will only change the Type parameter between those two values.

      If you want it to cycle through more values you'll need to handle it through scripting by using a variable as a counter and increasing it each time the button is clicked, resetting when you get to the max (4) and passing the value to the EQ's Type attribute.

      If your EQ has more than one band you'll need to use the band offset to select which band is affected by the button - forum search for "band offset".

    • pcs800P

      Impulse Response loader

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

      @pcs800 If you delve into the file and file system APIs you can add a button to open a file browser to allow users to select a IR.

      Or if you want a simpler solution you can add a waveform control to your UI, connect it to your effect, and then users can just drag/drop an IR onto it.

    • pcs800P

      Faust installation

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

      @d-healey I figured it out and it's compiling now, thanks! :-)