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
DMR
DMR
Level V

Can I override the "auto-hide" preference setting?

The "Windows Specific" section of the JMP Preferences provides a setting for determining whether or not to auto-hide the menus and toolbars, with "Based on Window Size" being the default setting.  But is there a property I can set to override this setting for a specific window?  I can't see one whose name suggests that it might perform that function within the list of properties for a New Window, but it wouldn't be the first time I've missed it by simply not knowing what name I'm looking for.

Many thanks

1 ACCEPTED SOLUTION

Accepted Solutions
msharp
Super User (Alumni)

Re: Can I override the "auto-hide" preference setting?

Like this?

new window("test",  Show Menu(0), Show Toolbars(0));

new window("test",  Show Menu(1), Show Toolbars(1));

View solution in original post

2 REPLIES 2
msharp
Super User (Alumni)

Re: Can I override the "auto-hide" preference setting?

Like this?

new window("test",  Show Menu(0), Show Toolbars(0));

new window("test",  Show Menu(1), Show Toolbars(1));

DMR
DMR
Level V

Re: Can I override the "auto-hide" preference setting?

Exactly like that.  I was looking for "auto-hide" or anything resembling it, as opposed to "show menu".  Many thanks!

Recommended Articles