如果我運行:告訴應用程序 - 字符串與字符串?
tell application "Maps"
set miniaturized of windows to false
end tell
...這工作正常
然而,當我運行:
set applicationName to "Maps"
tell application applicationName
set miniaturized of windows to false
end tell
...我得到:
地圖得到了一個錯誤:無法使|小型化|每個窗口的類型引用。
我也試過:
tell application (applicationName as string)
...
end tell
...但我得到同樣的錯誤。
我是Apple新手,不太瞭解兩者之間的細微差別。
我也在運行Sierra(10.12.6),但這兩個都不能在我的機器上運行。它們不會產生任何錯誤,但它們也不會恢復窗口。 – Jeff