on adding folder items to this_folder after receiving added_items try tell application "Finder" --↓フォルダアクションの設定されているフォルダ set the folder_name to the name of this_folder end tell --set the item_count to the number of items in the added_items --↓フォルダにドロップされたファイル repeat with myFile in added_items tell application "Finder" set the file_name to the name of myFile end tell display dialog folder_name & "内の" & file_name end repeat end try end adding folder items to
コメントする