Dynamically change the size of the GUI Interface
-
There are some Plugins from some developers like Arturia and PA that change the aspect of the whole GUI interface to show and hide extra functions, I tried this on HISE using variables in the makeFrontInterface function but result in a big crash, is this posible with HISE?
-
-
@d-healey hey David do you know if theres been any progress on this? i too would like to be able to do something like
const var ScriptButton1 = Content.getComponent("ScriptButton1"); inline function onScriptButton1Control(component, value) { if (value) Content.makeFrontInterface(600, 600); else Content.makeFrontInterface(600, 300); }; Content.getComponent("ScriptButton1").setControlCallback(onScriptButton1Control);
-
-
@ustk thank you :D