HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. xxx
    X
    • Profile
    • Following 0
    • Followers 0
    • Topics 4
    • Posts 19
    • Groups 0

    xxx

    @xxx

    2
    Reputation
    10
    Profile views
    19
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    xxx Unfollow Follow

    Latest posts made by xxx

    • RE: script error combo box + convolution ir list

      @d-healey hi, so i got the combo box working for my convolution reverb. i tried swapping it for a knob using the same logic—just changed the component. it compiles, but moving the knob throws errors and does nothing. not sure what i’m missing. couldn't find anything about this on the forum

      Screenshot 2025-05-19 at 6.31.05 PM.png

      posted in General Questions
      X
      xxx
    • RE: script error combo box + convolution ir list

      @d-healey Gotcha thanks

      posted in General Questions
      X
      xxx
    • script error combo box + convolution ir list

      hi, i am trying to make a simple combobox for a convolution reverb. I am following along with the video but I keep running into an error. Not sure how to fix this

      Content.makeFrontInterface(600, 200);
      
      const var ConvolutionReverb1 = Synth.getAudioSampleProcessor("Convolution Reverb1");
      
      const irs = Engine.loadAudioFilesIntoPool();
      
      //cmbIr
      const cmbIr = Content.getcompontent("cmbIr");
      
      inline function oncmbIrControl(component, value)
      {
      	//Add your custom logic here...
      };
      
      Content.getComponent("cmbIr").setControlCallback(oncmbIrControl);
      
      cmbIr.set("items","")
      
      for (x in irs)
      	cmbIr.addItem(x.replace("{PROJECT_FOLDER}").replace(".wav"));
      

      This is the error its showing for this line for (x in irs)

      Interface:! Line 19, column 1: Found 'for' when expecting ';' {{SW50ZXJmYWNlfG9uSW5pdCgpfDQwNHwxOXwx}}
      Master Chain:! Line 19, column 1: Found 'for' when expecting ';' {{SW50ZXJmYWNlfG9uSW5pdCgpfDQwNHwxOXwx}}
      
      posted in General Questions
      X
      xxx