I couldn't find this option in the settings.
Thanks!
This will control it for both JSL and Python (to my knowledge)
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!
OK、I see
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
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 ) ) );
What are you trying to do?
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!
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 ) ) );
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();