AppleScript 编辑器,将消息写入“结果”窗户
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 log 命令,将消息放入日志历史记录窗口中,例如:
You can use the log command, which puts messages into the Log History window, e.g.:
日志是执行此操作的正确方法;但是,如果您的用户群更熟悉 shell 脚本,您可以执行以下操作。
输出
通过这种方法,您不必经常告诉用户他们需要启用“显示日志”
Log is the correct way of doing this; however, if your user base is more familiar with shell script you can do the following.
Output
With this approach you don’t constantly have to telling users that they need to enable ‘Show Log’