0

ファイルがドロップレットにドラッグされたときにファイルを特定のフォルダーに移動する AppleScript ドロップレットを作成しようとしています。ドラッグしたばかりのファイルが移動したいファイルであることをスクリプトに伝える方法がわかりません。私はこれを試しましたが、うまくいきません:

on open dragged_file
  tell application "Finder"
  move dragged_file to "Macintosh HD:Users...etc."
  end tell
end open   --script runs but doesn't move file
4

2 に答える 2

1

試す:

on open of theFiles
    tell application "Finder"
        move theFiles to folder "Macintosh HD:Users...etc."
    end tell
end open
于 2012-11-05T15:18:28.800 に答える