GroupActivate

GroupAdd로 정의된 창 그룹에서 다음 창을 활성화합니다.

GroupActivate, GroupName , Mode

매개변수

GroupName

활성화 할 그룹의 이름, 최초로 GroupAdd로 정의되어 있습니다.

Mode

If omitted, the command activates the oldest window in the series. To change this behavior, specify the following letter:

R: 가장 새로운 창 (가장 최근에 활성화 된 창) 이 활성화됩니다. 그러나 명령어가 주어지는 순간 그룹에 아무 멤버도 활성화되어 있지 않을 경우에만 그렇습니다. "R"은 임시로 전혀 관련 없는 작업으로 전환할 경우에 유용합니다. GroupActivate, GroupDeactivate, 또는 GroupClose를 통하여 그룹으로 다시 돌아 오면, 가장 오래된 창이 아니라 여러분이 가장 최근에 작업한 창이 활성화됩니다.

ErrorLevel [AHK_L 54+]

ErrorLevel은 활성화 할 창을 발견할 수 없으면 1이 설정되고 그렇지 않으면 0이 설정됩니다.

논평

This command causes the first window that matches one of the group's window specifications to be activated. 두 번째로 사용하면 순서대로 다음 창이 활성화 됩니다. 등등. 보통, 핫키에 할당되기 때문에 이 창-순회 행위는 그 키를 누르면 자동으로 수행됩니다.

In v1.1.34 and older, each window specification is evaluated one at a time, in the order that they were added to the group by GroupAdd. Mode affects the order of activation only within each window specification, not across the entire group.

[v1.1.35+]: Each window is evaluated against the window group as a whole, without distinguishing between window specifications. Mode affects the order of activation across the entire group.

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

창 그룹에 관한 더 자세한 정보는 GroupAdd를 참조하십시오.

GroupAdd, GroupDeactivate, GroupClose, #WinActivateForce

예제

Activates the newest window (the one most recently active) in a window group.

GroupActivate, MyGroup, R