使用AppleScript打开新的Finder窗口

Tha*_*Cow 5 applescript

如何在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
Run Code Online (Sandbox Code Playgroud)

ada*_*one 7

尝试:

tell application "Finder" to make new Finder window
Run Code Online (Sandbox Code Playgroud)