We've expanded our news coverage and improved our search! Visit
news.oreilly.com for the latest or search for all things across O'Reilly!
Article:
 |
|
Automatically Import Images into iPhoto
|
| Subject: |
|
Import by pasting into iPhoto |
| Date: |
|
2004-11-09 07:01:19 |
| From: |
|
Thilo
|
|
|
|
A (single) image can be copied in the Finder and pasted to an iPhoto album, which is easy to script. I use the following script to import images from my mobile phone:
on adding folder items to T630 after receiving images
tell application "Finder"
activate
select item 1 of images
end tell
tell application "System Events"
keystroke "c" using command down
tell application "iPhoto"
activate
select album "T630"
end tell
keystroke "v" using command down
end tell
end adding folder items to |