在脚本中,我试图找到包含特定tty设备的Terminal.app窗口,并将该窗口提升到顶部。到目前为止,这是我在Applescript中所拥有的: tell application "System Events" set foundWin to false if (name of processes) contains "Terminal" then tell application "Terminal" set theTabs to first tab of every window where tty is "$(tty)" repeat with theTab in theTabs if class of theTab is tab then set theWin to (first window whose tabs …
如何移动窗口,以使窗口的标题栏位于菜单栏上方? 我已经尝试过使用AppleScript… tell application "System Events" to tell process "System Preferences" set position of windows to {-100, -100} end tell …并且在x变量起作用的同时,将窗口部分移出屏幕,y但没有,将窗口移至菜单栏,并且不再移动。 我也尝试过Keyboard Maestro: …但是有同样的问题:x值有效,但y无效。 这个问题是相关的,但相反:如何移动标题栏不在屏幕上的窗口? 我希望能够使标题栏不在屏幕上。