本当はAutoImporter→ExifRenamerと起動するアップルスクリプトを作りたい


本当はAutoImporter→ExifRenamerと起動させたいのだが、アップルスクリプト内でAutoImporterを起動させると、AutoImporterは起動してくれるのですが、画像を取り込まず困ってます。




以下、うまくAutoImporterが画像が取り込んでくれないAppleScript

                                        • -

tell application "AutoImporter" to launch

tell application "Finder"

activate

select every item of folder "AutoImport" of folder "Pictures" of home --home/ピクチャ/AutoImportフォルダ内のすべてのアイテムを選ぶ

open {selection} using application file "ExifRenamer.app" of folder "Applications" of startup disk --選んだファイルをExifRenamerに実行

end tell

                                        • -