- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
any way to set window title?
The following script lets me retrieve a window's title, but is there any way to change an existing window's title?
w = Open(
"$ENGLISH_SAMPLE_DATA/Big Class.jmp"
);
t = w << Get Window Title;
Show( t );
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: any way to set window title?
For a data table window :
w << set name("new name");
In JMP 10 also
w << set window title("new name")
The latter works for most, if not all, types of windows but it is not supported in JMP 9.
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: any way to set window title?
For a data table window :
w << set name("new name");
In JMP 10 also
w << set window title("new name")
The latter works for most, if not all, types of windows but it is not supported in JMP 9.