cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

Discussions

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

Pick File/Pick Directory "cancel" button

Hi all,

 

I use Pick File Function and Pick Directory Function in my script. In the pop up window, how could I "stop" the script if I click the "cancel". I know how to stop the script using the cancel button:

 

Button Box( "Cancel", stop_flag = 1 )

 

but this doesn't work for the pop up pick file/pick directory window...

 

Any help would be really appreciated!

1 REPLY 1
txnelson
Super User

Re: Pick File/Pick Directory "cancel" button

Just check on the returned value

names default to here(1);

xx=pickfile();

if( xx == "", stop() );
Jim

Recommended Articles