HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. It_Used
    3. Topics
    • Profile
    • Following 1
    • Followers 0
    • Topics 8
    • Posts 36
    • Groups 0

    Topics

    • It_UsedI

      setMinValue not working.

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports
      3
      0 Votes
      3 Posts
      85 Views
      It_UsedI

      @Chazrox I need to keep the range the way it is. See the last line of the script. Your solution can change only range, not current value

    • It_UsedI

      How i can create a Multi-Mic monolith?

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved Newbie League
      7
      0 Votes
      7 Posts
      554 Views
      d.healeyD

      @It_Used yes that's correct

    • It_UsedI

      How to realize streaming and loading threads?

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      11
      0 Votes
      11 Posts
      910 Views
      It_UsedI

      @Christoph-Hart I use this format initially, because otherwise I would have 500+GB occupied by samples.
      Can you answer an off-topic question? In general, I am very much waiting for the bugs with the mask and blur to be fixed. In general, this issue on github perfectly describes it.
      Are there any plans to fix this bug? It just really gets in the way when drawing :(
      Thank for advance ❤️

    • It_UsedI

      How to change shape of popup background?

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved Scripting
      3
      0 Votes
      3 Posts
      679 Views
      It_UsedI

      @d-healey This is very bad for me :(
      But thanks for the reply anyway ❤️!

    • It_UsedI

      how to make Half Pedal action?

      Watching Ignoring Scheduled Pinned Locked Moved Solved Scripting
      5
      0 Votes
      5 Posts
      402 Views
      It_UsedI

      @HISEnberg Thanks ❤️

    • It_UsedI

      How i can create a blurred panel (with border settings support)?

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      3
      0 Votes
      3 Posts
      151 Views
      It_UsedI

      @ustk Thank you very much for your reply)
      I'll take that into consideration. ❤️

    • It_UsedI

      Custom vectorized piano keyboard with unique octave indicator (Keyboard from VSL)

      Watching Ignoring Scheduled Pinned Locked Moved Presets / Scripts / Ideas
      11
      1 Votes
      11 Posts
      724 Views
      ustkU

      @It_Used Also, KeySpacing and ShowOctaveMark can be const var

      And this:

      var is_center = (OctCenter == obj.noteNumber); var bg_color = is_center ? Colours.withAlpha(0xB26776, 100) : Colours.withAlpha(0x575757, 100);

      can be

      var bg_color = Colours.withAlpha((OctCenter == obj.noteNumber) ? 0xB26776 : 0x575757, 100);

      or directly

      g.setColour(Colours.withAlpha((OctCenter == obj.noteNumber) ? 0xB26776 : 0x575757, 100));
    • It_UsedI

      Release Triggers with Sustain pedal support

      Watching Ignoring Scheduled Pinned Locked Moved Presets / Scripts / Ideas
      3
      0 Votes
      3 Posts
      140 Views
      It_UsedI

      @d-healey Thank you, I will study it and maybe make some changes, or I will use it as a reference.