如何在AppleScript中打开Finder的新窗口?我正在使用if else语句打开一个窗口。我尝试了Osascript命令,但它给了我一个语法错误。代码如下:

if the button returned of the result is "Sleep" then
    tell app "Finder" to go to sleep
if the button returned of the result is "Open Finder" then
    osascript -e 'tell application "Finder" to open new window'
else
    display dialog current time
end if

最佳答案

尝试:

tell application "Finder" to make new Finder window

关于applescript - 使用AppleScript打开新的Finder窗口,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21188431/

10-12 12:56