Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AppleScript Editor, write message to the "Result" window

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.

like image 246
topskip Avatar asked May 01 '10 12:05

topskip


1 Answers

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


enter image description here

like image 58
Paul R Avatar answered Sep 30 '22 06:09

Paul R