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