Apple脚本:在桌面上选择文件

时间:2013-06-23 18:57:27

标签: applescript

我想使用Apple Script在桌面上选择一些文件(例如“test.txt”)。

我这样做:

tell application "System Events" to key code 103

(模拟按键“F11”)显示桌面。

然后我想选择我的文件“test.txt”并在桌面上看到这个选择。这段代码:

tell application "Finder" to select file "test.txt" of folder "Desktop" of home

在“Finder”中选择我的文件。这不是我想要的。

我希望在桌面上看到我的文件选择(不在Finder的窗口中,显示文件夹'Dektop')

1 个答案:

答案 0 :(得分:1)

更改选择属性而不是使用select命令:

tell application "Finder"
    set selection to item 1 of desktop
end tell

这也会保留现有的选择:

tell application "Finder"
    activate
    select window of desktop
    if selection is {} then set selection to item 1 of desktop
end tell