为什么从脚本创建的普通笔记本会自动最小化?
代码很简单:
#!/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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当内核启动前端来提供这些类型的服务时,它会传递“-server”(类似于“-nogui”)。根据 ref/program/mathematica-unix:
如果您
先调用,那么您将不会获得导致笔记本自动最小化的“-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:
If you call
first then you won't get the "-server" behavior which is causing the notebook to automatically minimize.