WinActivateBottom

WinActivate와 동일합니다. 단 최상단 창이 아니라 최하단 창을 활성화한다는 점이 다릅니다.

WinActivateBottom , WinTitle, WinText, ExcludeTitle, ExcludeText

매개변수

WinTitle

목표 창을 식별하는 창 제목 또는 다른 기준. WinTitle 참조.

WinText

존재하면, 이 매개변수는 목표 창 텍스트의 부문자열입니다 (동봉된 Window Spy 유틸리티에 노출됨). 숨은 텍스트는 DetectHiddenText가 켜져 있어야 탐지됩니다.

ExcludeTitle

제목에 이 값이 있는 창은 무시합니다.

ExcludeText

텍스트에 이 값이 있는 창은 무시합니다.

논평

The bottommost window is typically the one least recently used, except when windows have been reordered, such as with WinSet Bottom.

부합하는 창이 하나 밖에 없다면, WinActivateBottom은 WinActivate와 동일하게 행위합니다.

Window groups은 이 명령어보다 더 고급입니다. 그래서 더 유연한 특징이 필요하면 사용을 고려해 보십시오.

If the window is minimized and inactive, it is automatically restored prior to being activated. [v1.1.20+]: If WinTitle is the letter "A" and the other parameters are omitted, the active window is restored. [v1.1.28.02+]: The window is restored even if it was already active.

목표 창을 활성화하기 위해 60ms 동안 여섯 번 시도를 합니다. 그리하여, 보통 이 명령어 다음에 WinWaitActive 명령어가 따라올 필요가 없습니다.

WinActivate와 다르게, 마지막 발견 창은 최하단 창일 경우가 없기 때문에 사용할 수 없습니다. 그러므로, 적어도 매개변수 중 하나는 반드시 비어 있지 않아야 합니다.

또다른 창이 활성화 되자 마자 그 즉시 또 창이 활성화되면, 어떤 시스템에서는 (OS와 그 설정에 따라) 태스크 바 버튼이 깜빡거릴 수 있습니다. 이를 피하려면 #WinActivateForce를 사용하십시오.

창 제목과 텍스트는 대소문자를 구분합니다. 숨은 창은 DetectHiddenWindows가 켜져 있어야 탐지됩니다.

WinActivate, #WinActivateForce, SetTitleMatchMode, DetectHiddenWindows, WinExist(), WinActive(), WinWaitActive, WinWait, WinWaitClose, GroupActivate

예제

Press a hotkey to visit all open browser windows in order from oldest to newest.

#i:: ; Win+I
SetTitleMatchMode, 2
WinActivateBottom, - Microsoft Internet Explorer
return