- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
New window size not working
Hi,
Would appreciate your help on understanding why the code below does not work.
nw2 = New Window("test", <<Size(400,900));
The syntax reference says "<<Size(x, y) Creates a new window of the specified height and width.")
This works but would like to understand if I am doing something wrong above:
nw2 = New Window("test");
nw2 << Set Window Size(400, 900);
Thanks.
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: New window size not working
Created:
Dec 9, 2019 01:29 PM
| Last Modified: Dec 9, 2019 12:01 PM
(2903 views)
| Posted in reply to message from wr 05-13-2015
I would like to update this comment.
a) there were some window sizing issues in older versions of JMP. Those have now been fixed so that size arguments are no longer sometimes ignored when size was specified in the creation command.
b) The correct command to send in the example from the original poster is << Size Window(). The following will work correctly in JMP 15 and later.
nw2 = New Window("test", <<Size Window(400,900));