WorkFlowy (Chrome 확장 프로그램)와 Google 크롬은 동일한 ahk_class를 가지고 있기 때문에이 글을 쓰는 데 어려움이 있습니다.
비슷한 방식으로 Windows Explorer 창을 순환하는 데 사용하는 스크립트는 다음과 같습니다.
If WinExist("ahk_class CabinetWClass")
{
WinGetClass, CurrentActive, A
WinGet, Instances, Count, ahk_class CabinetWClass
If Instances > 1
WinSet, Bottom,, A
WinActivate, ahk_class CabinetWClass
}
else
Run "C:\Windows\explorer.exe"
return
"ahk_class Chrome_WidgetWin_1"(Chrome의 경우 ahk_class)의 모든 인스턴스를 "Google 크롬 ahk_class Chrome_WidgetWin_1"으로 대체하려고했지만 나에게 적합하지 않습니다. 나도 덧붙였다. SetTitleMatchMode, 2
그리고 방금 전화했을 때조차도. If WinExist("Google Chrome")
새로운 Chrome 창을 연 이후로 false를 반환하는 것으로 보입니다.
어떤 도움을 주시면 감사하겠습니다. 감사.