如果我运行:
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
...我得到:
地图出现错误:无法制作 |miniaturized| 每个窗口的类型引用。
我也试过:
tell application (applicationName as string)
...
end tell
...但我得到同样的错误。
我是 Apple Script 的新手,不太了解两者之间的细微差别。