HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. Tags
    3. button
    Log in to post
    • All categories
    • d.healeyD

      Button default value should be used in broadcaster

      Watching Ignoring Scheduled Pinned Locked Moved Scripting button broadcaster default
      3
      1 Votes
      3 Posts
      53 Views
      d.healeyD

      @Christoph-Hart said in Button default value should be used in broadcaster:

      It's used for AAX plugins

      Aha that's good to know

    • d.healeyD

      [bug] Momentary button LAF obj.down doesn't work properly

      Watching Ignoring Scheduled Pinned Locked Moved Solved Bug Reports ismomentary button look and feel obj.down
      5
      1 Votes
      5 Posts
      291 Views
      A

      @clevername27 and all that with only half of his face. What a beast!

    • VorosMusicV

      Inline Function too many arguments

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved General Questions inline function button note parameters
      11
      0 Votes
      11 Posts
      689 Views
      ustkU

      @d-healey You're absolutely right, Dave, and if I give this possibility, I don't rely on it myself...

    • VorosMusicV

      Audio Loop Player Script

      Watching Ignoring Scheduled Pinned Locked Moved Solved General Questions loop player script button
      8
      0 Votes
      8 Posts
      662 Views
      VorosMusicV

      @iamlamprey Thank you for your help!
      I don't know why. I redid some other elements of my code and suddenly it worked.
      So yes for now its working properly in Hise itself.

    • trillbillyT

      Button return opposite value for popup

      Watching Ignoring Scheduled Pinned Locked Moved General Questions button popup opposite value
      4
      0 Votes
      4 Posts
      323 Views
      LindonL

      @trillbilly said in Button return opposite value for popup:

      @d-healey Well I'll be a son of a gun...

      Thank you

      or for those times where you are not using logical operators

      DelayBlackoutimg.showControl(1 - value);

      or you want the result to filp between 1 and minus 1:

      myVal = (value*2)-1;
    • d.healeyD

      Momentary button not disabled when parent disabled

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports momentary button enabled
      2
      0 Votes
      2 Posts
      219 Views
      d.healeyD

      As a quick workaround (because I couldn't figure out how to solve it properly) I've added a getChildComponents function that can be used to iterate over the children of a panel and toggle their enabled state manually. This is probably also a useful function to have for other things too.

      for (x in myPanel.getChildComponents()) x.set("enabled", true);