HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. lijas90
    3. Topics
    • Profile
    • Following 0
    • Followers 0
    • Topics 19
    • Posts 68
    • Groups 0

    Topics

    • lijas90L

      How to make smoother transitions between articulations when using MIDI Muters?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      28 Views
      lijas90L

      @d-healey That’s it! Thank you so much, David!

    • lijas90L

      OverlayMidiPanel: keep dragged MIDI file saved inside the plugin

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      2
      0 Votes
      2 Posts
      125 Views
      d.healeyD

      @lijas90 said in OverlayMidiPanel: keep dragged MIDI file saved inside the plugin:

      The directory always opens when the script compiles, not when I press the button.

      You've placed the command inside onInit. This is the callback that runs when you hit compile or when the plugin loads.

      You need to place the command inside the button callback. - Check my YouTube channel, I have lots of videos showing button callbacks.

    • lijas90L

      Help creating a simple keyswitch between two samplers

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      4
      0 Votes
      4 Posts
      82 Views
      lijas90L

      @d-healey Thanks you!

    • lijas90L

      How to Make the Keyboard Animate When a MIDI File Plays

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      6
      0 Votes
      6 Posts
      262 Views
      lijas90L

      @ulrik this is perfect. Thank you so much.

    • lijas90L

      How to change gain with a button in a sampler script

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      4
      0 Votes
      4 Posts
      501 Views
      LindonL

      @lijas90 said in How to change gain with a button in a sampler script:

      @Lindon said in How to change gain with a button in a sampler script:

      VoiceGain1.setAttribute(VoiceGain1.Gain, value);

      It works! Thank you so much.😊

      ..do the course.

    • lijas90L

      Activating/Deactivating a GUI Button via MIDI Keys in HISE?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      12
      0 Votes
      12 Posts
      881 Views
      lijas90L

      @d-healey Sorry, it works now. Thanks again, David

    • lijas90L

      How to force plugin to start on a specific panel?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      713 Views
      lijas90L

      @d-healey Thank you so much! It was so easy😅

    • lijas90L

      How to Relink Samples in HISE After Migrating from Windows to Mac?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      10
      0 Votes
      10 Posts
      439 Views
      d.healeyD

      @lijas90 You have to put them in the folder before you map them.

      So now you have the choice, either you can remap them - which is what I would do if it's not too many samples.

      Or you can edit the xml file to use the wildcard instead of the absolute path.

    • lijas90L

      Cannot Compile HISE Project on macOS

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      11
      0 Votes
      11 Posts
      476 Views
      lijas90L

      @d-healeyOk, I think I know where the problem is. I hadn’t downloaded the Apple Silicon version of Xcode. I’m still having some issues but I’m making progress. Thanks, David!

    • lijas90L

      How should I route the multichannel?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      1 Votes
      3 Posts
      252 Views
      lijas90L

      @Christoph-Hart Thank you very much for replying. This is how I have it set up right now and I don’t know why it still doesn’t work. It seems that in Hise the channel does change, but when I open it in Cubase it’s still on channel 1/2. Should I declare the sampler PanderetaManel in the script just like with the container? Is there any extra configuration or something I’m missing? Thanks a lot.

      Captura de pantalla 2025-08-20 030801.png
      Captura de pantalla 2025-08-20 030813.png

    • lijas90L

      How can I link a pitch parameter to a knob?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      7
      0 Votes
      7 Posts
      419 Views
      lijas90L

      @Ulrik It works! Thanks a lot! Problem solved

    • lijas90L

      When I compile, the volume resets to the original value

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      10
      0 Votes
      10 Posts
      444 Views
      lijas90L

      @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!

    • lijas90L

      Mac requirements for HISE

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      6
      0 Votes
      6 Posts
      365 Views
      lijas90L

      @d-healey Perfect, thank you very much!

    • lijas90L

      activate MidiOverlayPanel from code

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      2
      0 Votes
      2 Posts
      157 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
    • lijas90L

      Enable Parametriq Eq

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      8
      0 Votes
      8 Posts
      536 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);
    • lijas90L

      MIDI Players don't load

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

      Image directory not found

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      19
      0 Votes
      19 Posts
      1k Views
      lijas90L

      @Lindon Thanks!

    • lijas90L

      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
      548 Views
      lijas90L

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