G
Gnarlodious
Works:
tell application "System Events" of machine "eppc://Gnarlodious-Cube.local"
to exists process "Microsoft Entourage"
Doesn't:
tell application "System Events" of machine "eppc://Gnarlodious-Cube.local"
to exists process "Entourage"
Compare that to this:
Works:
ignoring application responses
tell application "Entourage" of machine "eppc://Gnarlodious-Cube.local"
to quit
end ignoring
Doesn't:
ignoring application responses
tell application "Microsoft Entourage" of machine
"eppc://Gnarlodious-Cube.local" to quit
end ignoring
Any explanation for this anomalous behaviour?
-- Gnarlie
<http://www.Gnarlodious.com/OSX/AppleScript/AppleScript.html>
tell application "System Events" of machine "eppc://Gnarlodious-Cube.local"
to exists process "Microsoft Entourage"
Doesn't:
tell application "System Events" of machine "eppc://Gnarlodious-Cube.local"
to exists process "Entourage"
Compare that to this:
Works:
ignoring application responses
tell application "Entourage" of machine "eppc://Gnarlodious-Cube.local"
to quit
end ignoring
Doesn't:
ignoring application responses
tell application "Microsoft Entourage" of machine
"eppc://Gnarlodious-Cube.local" to quit
end ignoring
Any explanation for this anomalous behaviour?
-- Gnarlie
<http://www.Gnarlodious.com/OSX/AppleScript/AppleScript.html>