cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Try the Materials Informatics Toolkit, which is designed to easily handle SMILES data. This and other helpful add-ins are available in the JMP® Marketplace
Choose Language Hide Translation Bar
View Original Published Thread

Lasso Tool in the modal window

Jackie_
Level VI

Hi,

Is there a way to call Lasso in the modal window?

undefined

JMP documentation says to press L, but it doesn't work in the modal window. Any suggestion?

undefined

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.

1 ACCEPTED SOLUTION

Accepted Solutions
jthi
Super User


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))
	)
);
-Jarmo

View solution in original post

2 REPLIES 2
txnelson
Super User


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.

Jim
jthi
Super User


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))
	)
);
-Jarmo