我使用系统事件来控制没有 AppleScript 库的程序。我因此使用系统事件来控制它。
我已经让程序为其打开一个弹出窗口打开文件界面,我想让它默认到某个位置。这可能吗。到目前为止,我有:
tell application "App Name"
activate
end tell
tell application "System Events"
tell process "App Name"
tell menu bar 1
tell menu bar item "File"
tell menu "File"
tell menu item "Import"
tell menu "Import"
click menu item "XML..."
delay 4
end tell
end tell
end tell
end tell
end tell
end tell
end tell
弹出窗口默认为其上次访问的位置。我希望它默认为给定的文件路径,例如 /Users/userabc/Documents/abcd.XML
谢谢