I'm looking for the most efficient workflow to create GUI windows in JSL. I know I can script them manually using New Window()
with nested layout boxes (V List Box
, H List Box
, etc.), but this can be time-consuming and difficult to visualize for more complex dialogs.
I've been exploring the Application Builder, as it allows me to drag and drop controls to visually design the layout, which is fantastic. However, when I save the application, it generates a complete application framework with namespaces.
My specific question is: Is it possible to use the Application Builder (or another tool) to create a window layout and then extract only the JSL code for the New Window
object itself?
I'm often just trying to create a single modal dialog or a settings window, and I don't need the entire application structure that comes with it.