У сценарії я намагаюся знайти вікно Terminal.app, що містить певний пристрій tty, і піднести це вікно доверху. Ось що я маю в 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 contains theTab)
set selected tab of theWin to theTab
set foundWin to true
end if
end repeat
end tell
end if
if foundWin then
--RAISE THE WINDOW?!
end if
end tell
Де я застрягаю - це частина "піднімаючи вікно".
Ось кілька речей, які не зовсім те, що я хочу:
set frontmost of theWin to true
- це приводить вікно до передньої частини групи вікон Terminal.app, але не піднімає його над будь-якими іншими вікнами.
tell application "Terminal" to activate
- це приносить кожне вікно терміналу на передній план у великій групі. Я просто хочу одне вікно.
tell application "System Events"
set theSysWin to first window of process "Terminal" whose name is (name of theWin)
perform action "AXRaise" of theSysWin
end tell
Це майже так, але це потрібно, щоб підняти вікно терміналу до позиції №2, все ще під активним вікном (якщо активний додаток - це щось інше, ніж Terminal.app.)
click theSysWin at {10,50}
- схоже, нічого не робить.
click first static text of theSysWin
- схоже, нічого не робить.
Чи є спосіб це зробити? Це не повинно бути в Applescript.
EDIT Я знайшов цю веб-сторінку ( http://blog.coriolis.ch/2008/03/04/bring-any-window-to-the-front/ ), цитуючи дзвінок Obj-C / Cocoa:
SetFrontProcessWithOptions(&psn, kSetFrontProcessFrontWindowOnly);
Я не знайомий ні з ObjC, ні з какао, і це (в кінцевому рахунку) викликає сценарій оболонки, тому не знаю, куди звідти піти.
SetFrontProcessWithOptions(&psn, kSetFrontProcessFrontWindowOnly);
я недостатньо знайомий ні з objc, ні з какао щоб знати, куди піти звідти, хоча.