Skip to content

Instantly share code, notes, and snippets.

View Thinkscape's full-sized avatar

Arthur Bodera Thinkscape

View GitHub Profile
@ishikawa
ishikawa / iPhotoExporter.applescript
Created December 27, 2008 03:55
Copy all photos of the album of iPhoto | iPhotoExporter.applescript
-- 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