cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • JMP will suspend normal business operations for our Winter Holiday beginning on Wednesday, Dec. 24, 2025, at 5:00 p.m. ET (2:00 p.m. ET for JMP Accounts Receivable).
    Regular business hours will resume at 9:00 a.m. EST on Friday, Jan. 2, 2026.
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.

Discussions

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

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
ms
Super User (Alumni) ms
Super User (Alumni)

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.

View solution in original post

1 REPLY 1
ms
Super User (Alumni) ms
Super User (Alumni)

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.

Recommended Articles