Forum
    • Categories
    • Register
    • Login
    1. Home
    2. chimaera_09
    3. Topics
    C
    • Profile
    • Following 0
    • Followers 0
    • Topics 3
    • Posts 6
    • Groups 0

    Topics

    • C

      How can i have a button that makes me go to a different section/page on my synth. Just like serum does with osc mix matrix and global pages

      Watching Ignoring Scheduled Pinned Locked Moved Newbie League
      3
      0 Votes
      3 Posts
      45 Views
      dannytaurusD

      @chimaera_09 Make the button show/hide a panel. Use the panel to house all your extra controls.

      const pnlSettings = Content.getComponent("pnlSettings"); const btnSettings = Content.getComponent("btnSettings"); btnSettings.setControlCallback(btnSettingsControl); inline function btnSettingsControl(component, value) { pnlSettings.showControl(value); // button shows/hides the panel }

      You can add a button in the panel to close it too:

      const btnSettingsClose = Content.getComponent("btnSettingsClose"); btnSettingsClose.setControlCallback(btnSettingsCloseControl); inline function btnSettingsCloseControl(component, value) { if (value) { pnlSettings.showControl(false); btnSettings.setValue(0); // sets the 'off' state of the button } }
    • C

      Couple of questions for my first synth plugin

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      7
      0 Votes
      7 Posts
      164 Views
      C

      @David-Healey I have not sorry, gonna spend all 5 hours on this. Thanks!