Forum
    • Categories
    • Register
    • Login
    1. Home
    2. Recent
    Log in to post
    Load new posts
    • All Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics
    • All categories
    • All tags
    • J

      Custom Display panel questions...

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved Scripting
      4
      0 Votes
      4 Posts
      28 Views
      J

      @dannytaurus

      Thanks for that buttons now working as I wanted now working on the text appearing, I can't quite work out what I've missed, currently it displays undefined:

      Screenshot 2025-12-19 054159.png

      This is the current code in respect of the text:

      const var rvbfilename = Content.getComponent("rvbfilename"); inline function onrvbfilenameControl(component, value) { local currentReverb = ConvolutionReverb1.getCurrentlyLoadedFile(); if (currentReverb == "") { rvbfilename.set("text", currentReverb); } else { rvbfilename.set("text", currentReverb); } rvbfilename.repaint(); }; Content.getComponent("rvbfilename").setControlCallback(onrvbfilenameControl); rvbfilename.setPaintRoutine(function(g) { var a = this.getLocalBounds(0); var cornerRadius = 4; // Text color if (isContainerOpen || isHovered) { g.setColour(0xFFFFFFFF); } else { g.setColour(0xFFFFFFFF); } // IR text var textArea = [a[0], a[1], a[2], a[3]]; g.setFont("font", 20); if (currentReverb == "") { g.drawAlignedText("Default", textArea, "centred"); } else { g.drawAlignedText(currentReverb, textArea, "centred"); } });
    • I

      How to make a basic distortion Effect

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved General Questions
      1
      0 Votes
      1 Posts
      11 Views
      No one has replied
    • David HealeyD

      Script Watch Table > View in Popup showing a graph

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      2
      0 Votes
      2 Posts
      141 Views
      David HealeyD

      Still broken

      2d7e4ace-d079-43ae-af6a-ce90e8ea76f4-image.png

    • S

      Empty slot for combobox?

      Watching Ignoring Scheduled Pinned Locked Moved Solved Scripting combobox irs reverb
      7
      0 Votes
      7 Posts
      47 Views
      S

      @David-Healey thanx, this helps a lot!! :D

    • Felix WF

      Customize the text content in the pop-up window?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      9
      0 Votes
      9 Posts
      70 Views
      David HealeyD

      @dannytaurus said in Customize the text content in the pop-up window?:

      Or do we have too many undocumented preprocessor defs already?

      Yes.

      I think a separate function would be better, or perhaps it could be part of getAlertWindowMarkdownStyleData. I'm not sure of the inner workings.

    • pcs800P

      expr needs to be wrapped into a compileable DSP network

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      4
      0 Votes
      4 Posts
      54 Views
      David HealeyD

      @pcs800 Select the outermost node. Open properties. Enable "Allow Compilation"

      f2c83dea-1eba-40ad-a895-4cbe908d717e-image.png

    • D

      Wavetable creation

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      45
      0 Votes
      45 Posts
      356 Views
      LindonL

      @Lindon whilst we are here....

      what tool is everyone using to generate morphing wave files ?

      so you have wav1 -> wav2 ->wav3 and you want to generate a bunch of morphs between these?

    • C

      Wavetable Synthesiser Preset Link to Combo Box

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      5
      0 Votes
      5 Posts
      63 Views
      C

      @Oli-Ullmann Snippet worked flawlessly thank you

    • DanHD

      LFO not working for Hardcoded FX

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      1
      0 Votes
      1 Posts
      17 Views
      No one has replied
    • T

      Changes Not Saving in HISE Project After Reopening

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      4
      0 Votes
      4 Posts
      31 Views
      David HealeyD

      @tycarrier said in Changes Not Saving in HISE Project After Reopening:

      I am assuming I can save multiple xml files for different versions

      Try to only use one xml per project. If you need to track different versions use git. For little test patches you should use project presets (.hip).

      Check the free Bootcamp course for more info about project management: https://audiodevschool.com/courses/hise-bootcamp/

    • T

      Best practice for stepped frequency parameters in SVF EQ

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      11
      0 Votes
      11 Posts
      113 Views
      dannytaurusD

      @the-red_1 Use the latest commit 3c36e36c0c27adf97be22206fdebf87ec9c7eeb0, as as @David-Healey says, use the develop branch.

    • Felix WF

      User-defined background?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      10
      0 Votes
      10 Posts
      967 Views
      Felix WF

      @David-Healey Yes, I tried that method, but it didn't work. However, I just used the Image component, and it worked.😅

    • B

      Compile scriptnode to DLL stuck on Ubuntu

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      6
      0 Votes
      6 Posts
      68 Views
      David HealeyD

      @bfaudio So you're unable to click Ok or Cancel? Ah I see that status shows after clicking Ok.

      Try a new project with a simple network with only one node. See if that works. If it does then it means it's a problem specific to the networks in this project.

    • O

      Add images to my Bank/Expansion on my Webview preset Browser

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      1
      0 Votes
      1 Posts
      26 Views
      No one has replied
    • DJJD12345D

      xcpretty Not Detected After Install on macOS Tahoe M1: Compiling Fails in HISE Export

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports
      145
      0 Votes
      145 Posts
      4k Views
      DJJD12345D

      @David-Healey sorry I only watched what I wanted (what was necessary). but thanks

    • 1

      How does EQ in sriptnode work

      Watching Ignoring Scheduled Pinned Locked Moved ScriptNode
      8
      0 Votes
      8 Posts
      141 Views
      DanHD

      @13murderer looking at your snippet there's a chance that the original signal / non-eq processed signal is running in parallel with the eq'd one. If you're trying to switch between those containers perhaps try the branch container instead.

      Screenshot 2025-12-17 at 22.58.52.png

    • LindonL

      Generating a MIDI Sequence......

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      40 Views
      LindonL

      @Christoph-Hart thanks!

    • YinxiY

      Trying to make a button callback when it’s already linked to an FX parameter

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      2
      0 Votes
      2 Posts
      30 Views
      David HealeyD

      @Yinxi You can use either parameter\processor id or a control callback. If you want to do two things then it must all be in the callback.

      Or you can use a broadcaster.

    • MorphoiceM

      No Multichannel output

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

      @Morphoice yeee! Let go! 🙏

    • D

      HISE doesn't recognize MS Buils installed

      Watching Ignoring Scheduled Pinned Locked Moved Solved Newbie League
      2
      0 Votes
      2 Posts
      32 Views
      D

      Solved it. Created a junction to "remove" this 18 folder:

      mklink /J "C:\Program Files\Microsoft Visual Studio\2022" "C:\Program Files\Microsoft Visual Studio\18"