为什么从脚本创建的普通笔记本会自动最小化?

发布于 2024-12-28 01:34:36 字数 411 浏览 1 评论 0原文

代码很简单:

#!/usr/local/bin/math -script
UsingFrontEnd[FE=$FrontEnd];
Unprotect[$FrontEnd];
$FrontEnd=FE;
nb= NotebookOpen["/home/src/math/test.nb",Visible->True];
Pause[10]

但是笔记本的窗口首先最小化,然后单击(未最小化)时 它立即再次自动最小化。 当我使用 Option WindowFrame->ModelessDialog 时,它会保留,但我不知道为什么只在这种情况下。任何人都可以向我解释一下这种行为吗?我用了几天数学但不知道 如何在文档中找到它。谢谢。 PS 我正在使用 Debian 6 和 Gnome,Mathematica 8 的试用版运行良好。

The code is simple:

#!/usr/local/bin/math -script
UsingFrontEnd[FE=$FrontEnd];
Unprotect[$FrontEnd];
$FrontEnd=FE;
nb= NotebookOpen["/home/src/math/test.nb",Visible->True];
Pause[10]

But window of Notebook is first minimized, and when clicked (unminimized) then
it immediately minimizes again automaticaly.
When I use Option WindowFrame->ModelessDialog it stays, but I do not know why only in this case. Can anybody explain me a bit this behavior. I'm using math few days and do not know
how to find this in documentation. Thanks.
P.S. I'm using Debian 6 with Gnome and Trial version of Mathematica 8 works well.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

强者自强 2025-01-04 01:34:36

当内核启动前端来提供这些类型的服务时,它会传递“-server”(类似于“-nogui”)。根据 ref/program/mathematica-unix:

-nogui 阻止显示任何类型的窗口或对话框

如果您

Developer`InstallFrontEnd["Server"->False]

先调用,那么您将不会获得导致笔记本自动最小化的“-server”行为。

When the FrontEnd is launched by the kernel to provide these types of services it is passed "-server" (which is similar to "-nogui"). According to ref/program/mathematica-unix:

-nogui prevent the display of any kind of window or dialogues

If you call

Developer`InstallFrontEnd["Server"->False]

first then you won't get the "-server" behavior which is causing the notebook to automatically minimize.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文