<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[How can i have a button that makes me go to a different section&#x2F;page on my synth. Just like serum does with osc mix matrix and global pages]]></title><description><![CDATA[<p dir="auto">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</p>
]]></description><link>https://forum.hise.audio/topic/14849/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</link><generator>RSS for Node</generator><lastBuildDate>Sat, 13 Jun 2026 15:54:25 GMT</lastBuildDate><atom:link href="https://forum.hise.audio/topic/14849.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 13 Jun 2026 11:53:11 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to How can i have a button that makes me go to a different section&#x2F;page on my synth. Just like serum does with osc mix matrix and global pages on Sat, 13 Jun 2026 12:14:14 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.hise.audio/uid/5001">@chimaera_09</a> Make the button show/hide a panel. Use the panel to house all your extra controls.</p>
<pre><code>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
}
</code></pre>
<p dir="auto">You can add a button in the panel to close it too:</p>
<pre><code>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
    }
}
</code></pre>
]]></description><link>https://forum.hise.audio/post/121239</link><guid isPermaLink="true">https://forum.hise.audio/post/121239</guid><dc:creator><![CDATA[dannytaurus]]></dc:creator><pubDate>Sat, 13 Jun 2026 12:14:14 GMT</pubDate></item><item><title><![CDATA[Reply to How can i have a button that makes me go to a different section&#x2F;page on my synth. Just like serum does with osc mix matrix and global pages on Sat, 13 Jun 2026 11:58:24 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.hise.audio/uid/5001">@chimaera_09</a></p>
<p dir="auto"><a href="https://youtu.be/_s7LTRz8pEc" rel="nofollow ugc">https://youtu.be/_s7LTRz8pEc</a></p>
]]></description><link>https://forum.hise.audio/post/121237</link><guid isPermaLink="true">https://forum.hise.audio/post/121237</guid><dc:creator><![CDATA[David Healey]]></dc:creator><pubDate>Sat, 13 Jun 2026 11:58:24 GMT</pubDate></item></channel></rss>