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 use Accelerated Life Testing (ALT) to evaluate reliability. Register for June 5 webinar, 2pm US Eastern Time.

Discussions

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

Is it possible to have the "Show Embedded Log" pane open automatically whenever a new Python Editor is created?


I couldn't find this option in the settings.

Thanks!截图20260602123836.png

10 REPLIES 10
jthi
Super User

Re: Is it possible to have the "Show Embedded Log" pane open automatically whenever a new Python Editor is created?

This will control it for both JSL and Python (to my knowledge)

jthi_0-1780379847726.png

 

-Jarmo
lala
Level IX

Re: Is it possible to have the "Show Embedded Log" pane open automatically whenever a new Python Editor is created?

Yes, I think it's only like this when creating a new python editor.

I could only ask the AI to write a JSL myself.It can be achieved.
Thanks Experts!

lala
Level IX

Re: Is it possible to have the "Show Embedded Log" pane open automatically whenever a new Python Editor is created?

OK、I see

jthi
Super User

Re: Is it possible to have the "Show Embedded Log" pane open automatically whenever a new Python Editor is created?

No need for risky GenAI generated powershell. You can use JSL you just have to figure out how to access the correct window (this can depend on how you wish to run the script)

Names Default To Here(1);

pw = Get Window List()[2];
pw[ScriptBox(1)] << Show Embedded Log(1);

You can also run this automatically using Global Window State Handler

-Jarmo
lala
Level IX

Re: Is it possible to have the "Show Embedded Log" pane open automatically whenever a new Python Editor is created?

Get Preferences();

NO find
Thanks Experts!
??

Preferences( Script Editor( Show Embedded Log On Script Window Open( 1 ) ) );Wait(0.5);
Try(Main Menu("Python Script"));
Wait(0.5);
Preferences( Script Editor( Show Embedded Log On Script Window Open( 0 ) ) );
jthi
Super User

Re: Is it possible to have the "Show Embedded Log" pane open automatically whenever a new Python Editor is created?

What are you trying to do?

-Jarmo
lala
Level IX

Re: Is it possible to have the "Show Embedded Log" pane open automatically whenever a new Python Editor is created?

I want to first use JSL to automatically check this setting of the JMP software, and then create a new python editor.Then uncheck this box so that the "Show Embedded Logs" column does not open when creating a new JSL script.

Thanks!

lala
Level IX

Re: Is it possible to have the "Show Embedded Log" pane open automatically whenever a new Python Editor is created?

OK

Preference( Script Editor Settings( Show Embedded Log on Script Window Open( 1 ) ) );
Wait( 0.2 );
Try( Main Menu( "Python Script" ) );
Wait( 0.2 );
Preference( Script Editor Settings( Show Embedded Log on Script Window Open( 0 ) ) );
jthi
Super User

Re: Is it possible to have the "Show Embedded Log" pane open automatically whenever a new Python Editor is created?

Still no idea what you are trying to do

Names Default To Here(1);

Main Menu("Python Script");
wl = Get Window List();
wl[N Items(wl)][ScriptBox(1)] << Show Embedded Log(1);
wait(0);

Write();
-Jarmo

Recommended Articles