Hi All,
I would like Hazel to open powerpoint lectures in keynote, save them, (and possibly delete the original powerpoint?). So far I have written the AppleScript below, but it doesn't seem to work. Any suggestions would be much appreciated, thanks in advance.
Regards,
Maksim
[applescript]
set theFolder to (path to Dropbox) as text
set theDestinationFolder to (theFolder) & "Summer 2011:" & "Bio"
tell application "Keynote"
open theFile
set theSlideshow to slideshow 1
set theDestinationPath to theDestinationFolder & (name of theSlideshow)
save theSlideshow in theDestinationPath
close theSlideshow
end tell
[/applescript]