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
chemistjones
Level II

Activate a button box in JSL - Simulate button press

Is it possible to activate a button box that was created by a previously running script? Essentially, I'm looking to simulate a button press.

Example:

[Script A creates object buttonbox(1)]

[Script B contains a line similar to one below, to simulate pressing the buttonbox]

buttonbox(1) << run script;

Then, script B would be run any time after script A and would call the script from buttonbox(1).


1 ACCEPTED SOLUTION

Accepted Solutions
txnelson
Super User

Re: Activate a button box in JSL - Simulate button press

The Click function allows you to do that.

names default to here(1);

new window("xxx",rr=button box("test",show("pressed")));

rr<<click;

Jim

View solution in original post

4 REPLIES 4
txnelson
Super User

Re: Activate a button box in JSL - Simulate button press

The Click function allows you to do that.

names default to here(1);

new window("xxx",rr=button box("test",show("pressed")));

rr<<click;

Jim
ram
ram
Level IV

Re: Activate a button box in JSL - Simulate button press

Hi Jim,

Is this aproach can also work for the error windows generated e.g while formula errors. in the attached picture i want to click on the "Ignore Errors"button using JSL?

Thanks

Ram

txnelson
Super User

Re: Activate a button box in JSL - Simulate button press

This error window is a modal window, which means that all processing will stop except for the window action, until the window is closed.  Therefore, you will not be able to issue a "Click" function

Jim
ram
ram
Level IV

Re: Activate a button box in JSL - Simulate button press

Thank you Jim for explaining.

Recommended Articles