HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. CMG
    3. Posts
    C
    • Profile
    • Following 0
    • Followers 0
    • Topics 3
    • Posts 6
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: Assign to delay bug

      Thats awesome. Makes perfect sense now that the knowledge is there. : ) as with most things.

      Thanks again

      posted in Bug Reports
      C
      CMG
    • RE: Assign to delay bug

      Certainly here it is - this is what is generated by using the right click create method, and then the right click assign modulator parameters method.

      ON INIT -

      Content.makeFrontInterface(500,300);

      const var Reverb = Content.addKnob("Reverb", 50, 38);

      const var Delay = Content.addKnob("Delay", 187, 36);

      const var SimpleReverb = Synth.getEffect("Simple Reverb");

      const var Delay = Synth.getEffect("Delay");

      -----------------------------------_

      ON UI -

      function onControl(number, value)
      {

      switch(number)
      {
      	case Reverb:
      	{
      		SimpleReverb.setAttribute(SimpleReverb.WetLevel, value);
      		break;
      	}
      	case Delay:
      	{
      		Delay.setAttribute(Delay.Mix, value);
      		break;
      	}
      };
      

      }

      posted in Bug Reports
      C
      CMG
    • Filter Bug

      Changing the dropdown on the filter doesn't always change the frequency graphic unless its LPF or HPF, all the others seem to offer no update.

      Also adding modulation to the FREQ seems to visually work, but offer no audio modulation.

      posted in Bug Reports
      C
      CMG
    • RE: Auto Complete

      THANKSSS - so new here, may annoy everyone with my questions, but I will love you all in the end for it.

      posted in Scripting
      C
      CMG
    • Assign to delay bug

      If I assign a dial to the delay it just hides the entire interface - looks like it throws up some incorrect code.
      I'm following the video tutorial, I add the reverb dial, all is well, then I add a delay mix dial and - things just die on me.

      posted in Bug Reports
      C
      CMG
    • Auto Complete

      Hi,
      I've been watching the new tutorial video, and was wondering, how on earth do you get the auto complete script function to come on, cant seem to get it to pop up like the video at all.

      posted in Scripting
      C
      CMG