I get this error every time I run this script: system events received an error message: "Test123" does not understand the notification message.
the code:
tell application "System Events"
if some_system_events_property then
my notify of "Test123" thru "Test"
end if
end tell
to notify of message thru level
display dialog message with titel level
end notify
I tried to replace
my notify of "Test123" thru "Test"
with the following, without any success:
notify of "Test123" thru "Test" of me
(notify of "Test123" thru "Test") of me
Tyilo source
share