On Jan 22, 2015, at 08:32, Robert Poland <email@hidden> wrote:I need to learn how to use the Log in Smile.
______________________________________________________________________
There is not such a thing as the Log in Smile.
As Deivy mentioned output for the log command will show up in the Console.
But as you said separating the wheat from the chaff can be problematic.
So. Let us not forget that Smile is itself scriptable, therefore creating your own special-purpose log is simple.
------------------------------------------------------------------------------------------- tell application "Smile" stop log set logWin to make new text window with properties {name:"Log Window", bounds:{1075, 22, 1920, 1196}} tell logWin set end of its text to "My Log Item" & linefeed end tell start log end tell -------------------------------------------------------------------------------------------
In the script I'm using start/stop log, because I don't want the operation to show up in the Console.
-- Best Regards, Chris
|