HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. Tags
    3. keyboard
    Log in to post
    • All categories
    • R

      Couple of custom LAF keyboard questions?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions keyboard custom keyboard opacity
      19
      0 Votes
      19 Posts
      834 Views
      R

      @d-healey ah that's fantastic thankyou. I'll try that when I fire up the laptop shortly.

      Thankyou for testing and finding the solution, it is much appreciated. I don't think I'd ever have found that!

    • VorosMusicV

      LAF PNG Keyboard with OctaveNumbers

      Watching Ignoring Scheduled Pinned Locked Moved Solved General Questions laf keyboard png octave number
      10
      0 Votes
      10 Posts
      820 Views
      VorosMusicV

      @ustk
      Good Call!

      Turning off custom graphics (unintuitively) fixed my main issue.
      Now your mentioned problem comes into play not getting my image names correctly, but I should be able to fix that.

      Tank you!

    • VorosMusicV

      Keyboard OctaveNumber Label

      Watching Ignoring Scheduled Pinned Locked Moved Solved General Questions keyboard floating tile octave number label
      6
      0 Votes
      6 Posts
      426 Views
      VorosMusicV

      @d-healey @Christoph-Hart
      ok, than I'll do it that way!
      Thanks!

    • VorosMusicV

      Keyboard Properties by Script

      Watching Ignoring Scheduled Pinned Locked Moved Solved General Questions keyboard properties script highkey lowkey
      4
      0 Votes
      4 Posts
      325 Views
      VorosMusicV

      @d-healey Thank you!!

    • d.healeyD

      [feature request] Keyboard floating tile default to omni

      Watching Ignoring Scheduled Pinned Locked Moved General Questions omni channel keyboard
      2
      2 Votes
      2 Posts
      286 Views
      gorangroovesG

      @d-healey Agree! +1

    • gorangroovesG

      Mark notes that contain samples by coloring keyboard keys

      Watching Ignoring Scheduled Pinned Locked Moved General Questions color keyboard
      34
      0 Votes
      34 Posts
      3k Views
      W

      just to thank you guys, I did this code above of my reply and did some editing for 4 samplers and 4 keyboards, I hope it help a newbie like me.

      const var Sampler1 = Synth.getChildSynth("Sampler1");

      reg i;

      for (i = 0; i < 127; i++)
      {
      if (Sampler1.asSampler().isNoteNumberMapped(i))
      Engine.setKeyColour(i, Colours.withAlpha(Colours.blue, 0.2));
      }

      const var Sampler2 = Synth.getChildSynth("Sampler2");

      reg i2;

      for (i = 0; i < 127; i++)
      {
      if (Sampler2.asSampler().isNoteNumberMapped(i))
      Engine.setKeyColour(i, Colours.withAlpha(Colours.yellow, 0.3));
      }
      const var Sampler3 = Synth.getChildSynth("Sampler3");

      reg i3;

      for (i = 0; i < 127; i++)
      {
      if (Sampler3.asSampler().isNoteNumberMapped(i))
      Engine.setKeyColour(i, Colours.withAlpha(Colours.orange, 0.3));
      }

      const var Sampler4 = Synth.getChildSynth("Sampler4");

      reg i4;

      for (i = 0; i < 127; i++)
      {
      if (Sampler4.asSampler().isNoteNumberMapped(i))
      Engine.setKeyColour(i, Colours.withAlpha(Colours.red, 0.3));
      }