0

我想使用 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”)

4

1 回答 1

1

更改 selection 属性而不是使用 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
于 2013-06-24T10:24:04.363 回答