| Sign In/My Account | View Cart |
| Article: |
Cleaning iPhoto | |
| Subject: | Use the Force, Luke. | |
| Date: | 2004-02-28 08:21:04 | |
| From: | hhas | |
tell application "iPhoto" |
||
Showing messages 1 through 5 of 5.
tell application "iPhoto"
tell photo library album
set c to count of photos
repeat with myIndex from c to 1 by -1
tell photo myIndex
set {thisWidth, thisHeight} to {width, height}
end tell
if thisWidth < 200 or thisHeight < 200 then
remove photo myIndex
end if
end repeat
end tell
end tell
Use the Force, Luke.