我试图用AppleScript更改窗口标题,但我没有成功。
告诉应用程序" Finder"设置窗口的名称" oldWinName"到" newWinName"
也试过了 call方法" setTitle:" (window" oldWinName")参数{" newWinName"}
有任何想法吗?
此致
答案 0 :(得分:1)
哪个应用程序的窗口?
例如,对于terminal.app
tell application "Terminal"
set custom title of window 1 to "hello world"
end tell
或者,对于textedit.app
tell application "TextEdit"
set name of window 1 to "hello world"
end tell
大多数应用程序都有类似的方法:)