cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Instantly extract effect sizes, F-ratios, and FDR-adjusted p-values from your models with the Calculate Effects Sizes extension, available now in the JMP Marketplace!
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • Your voice matters! Tell us how you prefer to receive JMP updates, so we can tailor our communication to your needs. Take short survey.

Discussions

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

Can you remove all menu items from New Window() ?

Hello,

I'd like to remove all the default menu items from the Window I create when using the New Window() function.

I didn't find any documentation on this in the "JMP 10  Scripting Guide" that I'm using to learn JSL.

The default menu items have no meaning within my application, and I like to be able to present the users with an uncluttered dialog box.

Thanks for your help.

Robert

 


1 ACCEPTED SOLUTION

Accepted Solutions
ms
Super User (Alumni) ms
Super User (Alumni)

Re: Can you remove all menu items from New Window() ?

New Window has many options (hold mouse pointer over the command in jsl editor to see all options).

Maybe this does what you want:

nw=new window("uncluttered", show menu(0), show toolbars(0));

View solution in original post

2 REPLIES 2
ms
Super User (Alumni) ms
Super User (Alumni)

Re: Can you remove all menu items from New Window() ?

New Window has many options (hold mouse pointer over the command in jsl editor to see all options).

Maybe this does what you want:

nw=new window("uncluttered", show menu(0), show toolbars(0));

restonian
Level I

Re: Can you remove all menu items from New Window() ?

Thanks MS, thoes arguments did the trick along with the hover suggestion!  I went back to  Scripting Guide and did find the New Window ()  function documented in Appendix A.

Recommended Articles