HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. lijas90
    3. Topics
    L
    • Profile
    • Following 0
    • Followers 0
    • Topics 8
    • Posts 27
    • Groups 0

    Topics

    • L

      How can I link a pitch parameter to a knob?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      7
      0 Votes
      7 Posts
      115 Views
      L

      @Ulrik It works! Thanks a lot! Problem solved

    • L

      When I compile, the volume resets to the original value

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      10
      0 Votes
      10 Posts
      151 Views
      L

      @d-healey Ok, I think I know what's going on. When duplicating knobs, the duplicated knob inherits the links from the original one. So if I change the gain of the original knob and compile, HISE applies the value from the duplicated knob, not the original. Thanks anyway!

    • L

      Mac requirements for HISE

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      6
      0 Votes
      6 Posts
      114 Views
      L

      @d-healey Perfect, thank you very much!

    • L

      activate MidiOverlayPanel from code

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      2
      0 Votes
      2 Posts
      58 Views
      rglidesR

      @lijas90 I think this thread could help you

      https://forum.hise.audio/topic/11218/making-button-flash-upon-mouseclick-and-midi-note/19?_=1737578349604
    • L

      Enable Parametriq Eq

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      8
      0 Votes
      8 Posts
      344 Views
      rglidesR

      @lijas90 You need to add a generic script reference for the EQ then bypass it in the button callback

      const var ParametriqEQ1 = Synth.getEffect("Parametriq EQ1"); const var Button1 = Content.getComponent("Button1"); inline function onButton1Control(component, value) { ParametriqEQ1.setBypassed(value); }; Content.getComponent("Button1").setControlCallback(onButton1Control);
    • L

      MIDI Players don't load

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      1
      0 Votes
      1 Posts
      42 Views
      No one has replied
    • L

      Image directory not found

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      19
      0 Votes
      19 Posts
      570 Views
      L

      @Lindon Thanks!

    • L

      Need help creating a scroll panel with buttons – beginner using viewport and panel

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      5
      0 Votes
      5 Posts
      338 Views
      L

      @d-healey Thank you so much! I finally got it to work, I’d been trying for quite a while😅