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. ET 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
lala
Level IX

How to adjust the height of this window with JSL?

It's not recorded in the log

Thanks!

2024-08-28_14-47-43.png

 

2 REPLIES 2
jthi
Super User

Re: How to adjust the height of this window with JSL?

Modify the size of the splitter box

Names Default To Here(1);

dt = Open("$SAMPLE_DATA/Big Class.jmp");
sb = Window("Big Class")[SplitterBox(1)];

sb << Set Sizes({0.1, 0.9})
-Jarmo
lala
Level IX

Re: How to adjust the height of this window with JSL?

Thank jthi!

dt = Open("$SAMPLE_DATA/Big Class.jmp");
na=dt<<Get Name();
sb = Window(na)[SplitterBox(1)];

sb << Set Sizes({0.1, 0.9});
Wait(1);
sb << Set Sizes({1.9, 0.9})

Recommended Articles