HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. tsempire
    • Profile
    • Following 1
    • Followers 0
    • Topics 24
    • Posts 144
    • Groups 0

    tsempire

    @tsempire

    25
    Reputation
    36
    Profile views
    144
    Posts
    0
    Followers
    1
    Following
    Joined
    Last Online

    tsempire Unfollow Follow

    Best posts made by tsempire

    • Knob Web Studio

      Hi team,

      I’ve created a small web application to design knobs. I hope you find it useful and that you’ll enjoy using it.

      www.knobwebstudio.com

      Capture d’écran 31-07-2025 22.29.35.png

      posted in General Questions
      tsempireT
      tsempire
    • RE: Mono, Legato, poly

      @DabDab I put it in the sampler1 and it seems to work.

      posted in General Questions
      tsempireT
      tsempire
    • RE: Mono, Legato, poly

      @DabDab a34dcdd4-a8e8-43e1-a555-5e26c9c139a8-image.png

      thank you for your help where is Legato in the fx?

      posted in General Questions
      tsempireT
      tsempire
    • RE: Pitch Wheel Modulator1 HELP

      @ulrik perfect it works thank you

      posted in General Questions
      tsempireT
      tsempire
    • RE: Knob Web Studio

      @resonant Thank you very much! Knobman already exists, but I wanted to create something similar on the web that's easier to understand. Once you get how it works, it's like magic!

      posted in General Questions
      tsempireT
      tsempire
    • RE: Knob Web Studio

      @Mighty23 Lol, things are coming true this is just the beginning. Thank you for your support.

      posted in General Questions
      tsempireT
      tsempire
    • RE: Knob Web Studio

      @dannytaurus Yes, it is in French, I am working on it in English too, it will arrive in the next few days.

      posted in General Questions
      tsempireT
      tsempire
    • RE: Knob Web Studio

      @Gab Thank you, I'm really trying to create something good, simple, and innovative and most importantly, free. 👍

      posted in General Questions
      tsempireT
      tsempire
    • RE: Undefined parameter 0 ( Panel )

      @Chazrox It's good, I did it. Thank you.

      posted in General Questions
      tsempireT
      tsempire
    • RE: FREE DESIGN || Upgrade Your Keyboard!

      @Chazrox Thx ✌

      posted in General Questions
      tsempireT
      tsempire

    Latest posts made by tsempire

    • RE: Knob Web Studio

      @resonant Thank you very much! Knobman already exists, but I wanted to create something similar on the web that's easier to understand. Once you get how it works, it's like magic!

      posted in General Questions
      tsempireT
      tsempire
    • RE: Knob Web Studio

      @Mighty23 Lol, things are coming true this is just the beginning. Thank you for your support.

      posted in General Questions
      tsempireT
      tsempire
    • RE: Knob Web Studio

      @dannytaurus Yes, it is in French, I am working on it in English too, it will arrive in the next few days.

      posted in General Questions
      tsempireT
      tsempire
    • RE: Knob Web Studio

      @Gab Thank you, I'm really trying to create something good, simple, and innovative and most importantly, free. 👍

      posted in General Questions
      tsempireT
      tsempire
    • Knob Web Studio

      Hi team,

      I’ve created a small web application to design knobs. I hope you find it useful and that you’ll enjoy using it.

      www.knobwebstudio.com

      Capture d’écran 31-07-2025 22.29.35.png

      posted in General Questions
      tsempireT
      tsempire
    • RE: Undefined parameter 0 ( Panel )

      @Chazrox It's good, I did it. Thank you.

      posted in General Questions
      tsempireT
      tsempire
    • RE: Undefined parameter 0 ( Panel )
      const var btns = [Content.getComponent("Button01"),
                        Content.getComponent("Button02"),
                        Content.getComponent("Button03"),
                        Content.getComponent("Button04")];
      
      const var pnls = [Content.getComponent("Panel1"),
                        Content.getComponent("Panel2"),
                        Content.getComponent("Panel3"),
                        Content.getComponent("Panel4")];
      
      // Masquer tous les panels sauf le premier au démarrage
      for (var i = 0; i < pnls.length; i++)
          pnls[i].showControl(i == 0);
      
      // Ajouter les callbacks aux boutons
      for (var i = 0; i < btns.length; i++)
      {
          btns[i].setControlCallback(onbtnsControl);
      }
      
      // Fonction quand un bouton est cliqué
      inline function onbtnsControl(component, value)
      {
          local i;
          for (i = 0; i < pnls.length; i++)
              pnls[i].showControl(i == btns.indexOf(component));
      };
      

      I think it's settled

      posted in General Questions
      tsempireT
      tsempire
    • RE: Undefined parameter 0 ( Panel )

      @Chazrox Should I modify it with something else?

      The idea is to make 4 buttons with 4 different panels.

      posted in General Questions
      tsempireT
      tsempire
    • Undefined parameter 0 ( Panel )
      const var btns = [Content.getComponent("Button01"),
                        Content.getComponent("Button02"),
                        Content.getComponent("Button03"),
                        Content.getComponent("Button04")];
      
      const var pnls = [Content.getComponent("Panel1"),
                        Content.getComponent("Panel2"),
                        Content.getComponent("Panel3"),
                        Content.getComponent("Panel4")];
      
      
      for (b in btns)
      {
      	b.setLocalLookAndFeel(tabLAF);
      	b.setControlCallback(onbtnsControl);
      }
      
      
      
      inline function onbtnsControl(component, value)
      {
      	for (p in pnls)
      	{
      		if (pnls.indexOf(p) != btns.indexOf(component))
      			p.showControl(false);
      
      
      		if (pnls.indexOf(p) == btns.indexOf(component))
      			p.showControl(value);
      	}
      };
      

      Capture d’écran 26-07-2025 14.29.03.png

      I can't find the solution. Does anyone know where the error comes from ?

      posted in General Questions
      tsempireT
      tsempire
    • RE: FREE DESIGN || Upgrade Your Keyboard!

      @Chazrox Thx ✌

      posted in General Questions
      tsempireT
      tsempire