HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. kekient
    K
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 4
    • Groups 0

    kekient

    @kekient

    0
    Reputation
    1
    Profile views
    4
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online
    Age 22

    kekient Unfollow Follow

    Latest posts made by kekient

    • RE: L+R Channel Volume link button

      @Matt_SF thank you so much

      posted in Scripting
      K
      kekient
    • L+R Channel Volume link button

      Hello friends, I'm trying to make 2 volume sliders to control the volume of L and R channels. I scripted the link button and it works great but as soon as I link the sliders to the dedicated controls in scriptnode the link button stops working. Am I missing something?

      const var Lslider = Content.getComponent("Lslider");
      const var Rslider = Content.getComponent("Rslider");
      const var LRlink = Content.getComponent("LRlink");
      
      inline function onLsliderControl(component, value)
      {
      	if (LRlink.getValue())
      	{
      		Rslider.setValue(value);
      		Rslider.changed();
      	}
      };
      Lslider.setControlCallback(onLsliderControl);
      
      inline function onRsliderControl(component, value)
      {
      	if (LRlink.getValue())
      	{
      		Lslider.setValue(value);
      		Lslider.changed();
      	}
      };
      
      Rslider.setControlCallback(onRsliderControl);
      
      posted in Scripting
      K
      kekient
    • RE: Level display in hise

      @ustk thank you so much, I'll try!

      posted in General Questions
      K
      kekient
    • Level display in hise

      Hello everyone! Is there a way to make a level display similar to FF Pro-L or Submission Flatline? Thanks
      0ede4b1b-11fd-4c97-be95-9eef78cb8955-image.png
      5ec6a767-03f7-441e-9f6c-4299f3de991f-image.png

      posted in General Questions
      K
      kekient