Hi,
I'm trying to convert lecture to keynote format once they've been downloaded and moved to a specific folder. Below is the applescript I'm running - is there a generic way to refer to theFile's location.
set theDestinationFolder to "Macintosh HD:Users:mpa15:Dropbox:Summer 2011:Bio:Lectures:Midterm II:" as alias
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