This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- iPhotoExporter.applescript | |
-- Copy all photos of the album of iPhoto | |
on exportAlbum(theRecord) | |
tell application "Finder" | |
set theArchiveFolder to folder "iphoto" of desktop | |
try | |
make new folder at theArchiveFolder with properties {name:name of theRecord} | |
end try | |
set theAlbumFolder to folder (name of theRecord) of theArchiveFolder |
NewerOlder