If I generate a platform via JSL with a By variable, the return value is a list of all generated scriptable objects.
If I use the platform command just to open the Dialog - and then later, after the user clicked on OK, what is a fast & robust way to get the list of all scriptable objects which were generated?
Something like
(current report() << xpath("//OutlineBox")) << get scriptable object()
... with a clever preselection: just OutlneBoxes that make sense
best: a universal preselection which doesn't have to be adjusted for the individual case.
Names Default to Here(1);
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
New Window("test",V List Box(
dist1=Distribution (by( :age ))), // return value: list of the scriptable objects
dist2 = Distribution(
Continuous Distribution(Column( :height )),
By( :age )
));