AppleScript Gurus?
DavidTO
Registered Users, Retired Mod Posts: 19,160 Major grins
Anyone handy with AppleScript?
I'm trying to write a very simple script that tells iSync to sync with my phone, and then when done to quit. I got the syncing part working, and it'll even quit, but it does it early, before sync is done, and asks me if I'm sure I want to quit.
This is what I have so far:
tell application "iSync"
synchronize
if syncing is false then
quit
end if
end tell
I'm trying to write a very simple script that tells iSync to sync with my phone, and then when done to quit. I got the syncing part working, and it'll even quit, but it does it early, before sync is done, and asks me if I'm sure I want to quit.
This is what I have so far:
tell application "iSync"
synchronize
if syncing is false then
quit
end if
end tell
0