AppleScript 编辑器,将消息写入“结果”窗户

发布于 2024-08-30 19:59:26 字数 179 浏览 3 评论 0原文

我正在使用 Mac OS X Apple 脚本编辑器(在调试时),而不是编写大量 显示对话框 语句,我想在下面的窗口中编写一些计算的结果,称为“结果”(我这里有德语用户界面,所以翻译是猜测)。那么是否有一个写入/打印语句可用于将消息放入“标准输出”窗口中?我并不是要求将消息放入文件系统上的日志文件中,它纯粹是临时的。

I am using the Mac OS X Apple Script Editor and (while debugging) instead of writing a lot of display dialog statements, I'd like to write the results of some calculation in the window below, called "Result" (I have the German UI here, so the translation is a guess). So is there a write/print statement that I can use for putting messages in the "standard out" window? I am not asking to put the messages in a logfile on the file system, it is purely temporary.

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

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

发布评论

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

评论(2

梦里寻她 2024-09-06 19:59:26

您可以使用 log 命令,将消息放入日志历史记录窗口中,例如:

在此处输入图像描述

You can use the log command, which puts messages into the Log History window, e.g.:

enter image description here

九命猫 2024-09-06 19:59:26

日志是执行此操作的正确方法;但是,如果您的用户群更熟悉 shell 脚本,您可以执行以下操作。

set val to 123
do shell script "echo The value: " & val

输出

Result:
"The value: 123"

通过这种方法,您不必经常告诉用户他们需要启用“显示日志”

Log is the correct way of doing this; however, if your user base is more familiar with shell script you can do the following.

set val to 123
do shell script "echo The value: " & val

Output

Result:
"The value: 123"

With this approach you don’t constantly have to telling users that they need to enable ‘Show Log’

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