パスを取得する

on open dropLIst
 repeatwith thisItem in dropLIst --リストがなくなるまで処理を繰り返す
  display dialog (thisItem as string) & return & return& "OKでクリップボードにコピー。"
  set the clipboard to thisItem as string
 endrepeat
end open