Hidden admin control
-
In previous version of HISE it was possible to see the front interface in the main workspace and I was able to position control outside of the view displayed to the user. This was useful for having admin type controls that could be used to set parameters of factory presets. Is it possible to achieve a similar hidden control with the current version of HISE?
-
Well, you could just throw them all in a Panel and use something like this:
const var SHOW_ADMIN_PANEL = true; Content.getComponent("adminPanel").set("visible", SHOW_ADMIN_PANEL);
Then just flip the switch depending on if you need to see what's happening there. I am actually doing this with a few controls myself.
-
I like it, very simple!