- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Lasso Tool in the modal window
Hi,
Is there a way to call Lasso in the modal window?
JMP documentation says to press L, but it doesn't work in the modal window. Any suggestion?
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
New window("",modal,
gbp = Graph Builder(
Variables( X( :height ), Y( :weight ) ),
Elements( Points( X, Y ), Smoother( X, Y ) )
);
)
Thanks,
This post originally written in German and has been translated for your convenience. When you reply, it will also be translated back to German.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Lasso Tool in the modal window
Seems like modal windows block most of the shortcuts from being run. You could add additional controls to access it if you really need modal window
Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");
nw = New Window("", << modal,
Button Box("Lasso",
Main Menu("Lasso")
, << Set Icon("WinToolsLasso")
),
gbp = Graph Builder(
Variables(X(:height), Y(:weight)),
Elements(Points(X, Y), Smoother(X, Y))
)
);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Lasso Tool in the modal window
I don't see a way to access the Lasso tool in a modal window. This sounds like a great item to add to the JMP Wish List.
However, you can make a non modal window work somewhat like a modal window by placing the code to be processed after the window closes in an On Close() function for the window.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Lasso Tool in the modal window
Seems like modal windows block most of the shortcuts from being run. You could add additional controls to access it if you really need modal window
Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");
nw = New Window("", << modal,
Button Box("Lasso",
Main Menu("Lasso")
, << Set Icon("WinToolsLasso")
),
gbp = Graph Builder(
Variables(X(:height), Y(:weight)),
Elements(Points(X, Y), Smoother(X, Y))
)
);