如何告诉Finder在AppleScript中选择/显示多个文件

时间:2010-06-25 05:16:50

标签: applescript finder

使用以下代码:

tell application "Finder" to reveal every item of theFiles

当文件包含单个文件时工作,但当它包含多个文件时,我得到:

error "Finder got an error: AppleEvent handler failed." number -10000

我做错了什么?我只想在Finder中突出显示一个文件列表。

2 个答案:

答案 0 :(得分:2)

这似乎有效:

tell application "Finder" to reveal theFiles

我看的一个例子是“......揭示......的所有项目”。我不确定他们是否有错误或AS发生了什么变化。

答案 1 :(得分:1)

这似乎工作正常

  tell application "Finder"
    set theFiles to entire contents of folder of (choose folder)
    reveal every item of theFiles
  end tell