cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • DownloadSemiconductor Toolkit: Tools to create wafer maps, add wafer geometry to graphics, explore die defects & compare wafers.
  • Discovery Summit 2026: Early User Edition - September 23-24.Register. It's free.
  • Use JMP Clinical with CDISC-compliant data. Review studies, ID safety and efficacy signals & communicate findings with interactive graphics. Register to see how. Aug. 27, 2 pm US ET.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
Jackie_
Level VII

Lasso Tool in the modal window

Hi,

 

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

 

Jackie__0-1713819941690.pngJackie__0-1713819941690.png

 

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

 

Jackie__1-1713819981460.pngJackie__1-1713819981460.png

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,

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

Recommended Articles