I've created some GUI parts with GUI Builder and I wanted to embed them in panels of my scripts, instead of adding them directly in the app. But apparently, a such code doesn't work:
var app = UiApp.createApplication();
var vp = app.createVerticalPanel();
vp.add(app.loadComponent("myGUI"));
app.add(vp);
return app;
Is it (or will it be) possible to add GUI's from GUI Builder in other containers than app?
Thanks!