Hi, I'm not getting my growl notification when these update mac and update server scripts are run. Is this because they are essentially mini apps that don't support growl? Or is the disconnection happening before yummy has a chance to negotiate with growl? If anyone with applescript experience sees this is there anything that could be added to make growl notifications of completed updates work? Many thanks, Dave
tell application "Yummy FTP"
activate
connect "Bookmark"
using connection "Bookmark" list remote folder "/Full/Path/To/Server/Folder/"
using connection "Bookmark" list local folder "/Full/Path/To/Mac/Folder/"
with timeout of 32766 seconds
using connection "Bookmark" synchronize "Update Server"
end timeout
disconnect "Bookmark"
end tell