As soon as I updated to Mac 12.3, my ChronoSync AppleScript tasks broke with a "The application “ChronoSync.app” can’t be opened. 1703" error.
The basic AppleScript looks like this (I've removed my paths below but the AppleScript is the same otherwise):
tell application "Finder" to open alias "<path_to_sync_task>"
tell application "ChronoSync"
activate
set myDocument to document "<sync_docuument_name>"
tell myDocument
Synchronize
delay 1
repeat while syncStatus is not 0
delay 1
end repeat
save
close
end tell
quit
end tell
------------
Does anyone know of a workaround for this problem?
Thanks,
The basic AppleScript looks like this (I've removed my paths below but the AppleScript is the same otherwise):
tell application "Finder" to open alias "<path_to_sync_task>"
tell application "ChronoSync"
activate
set myDocument to document "<sync_docuument_name>"
tell myDocument
Synchronize
delay 1
repeat while syncStatus is not 0
delay 1
end repeat
save
close
end tell
quit
end tell
------------
Does anyone know of a workaround for this problem?
Thanks,