带有UI脚本的Applescript文件对话框

时间:2010-03-18 20:18:22

标签: applescript

我正在尝试在应用程序不太可编写的区域中打开文件。

我通过使用UI脚本来选择正确的菜单项,但这会打开标准文件对话框。

如何使用Applescript设置文件对话框的目的地?

1 个答案:

答案 0 :(得分:6)

啊,这可以让你走上正确的道路

   tell application "Safari"
    activate
    -- do menu select gui script first
    set posixpath to "/path/to/a/folder/that/exists"
    tell window 1
        tell application "System Events"
            keystroke "g" using {shift down, command down}
            keystroke posixpath
            delay 1
            keystroke return
        end tell
    end tell
   end tell