20200626 1128
"https://autohotkey.com/board/topic/103732-opening-new-tab-within-specific-ie-window/"
"Will open 3 new tabs in IE window which is furthest right."
F1::
left=0
For wbs in ComObjCreate("Shell.Application").Windows
If (wbs.left>left) and InStr(wbs.FullName, "iexplore.exe")
{
left := wbs.left
wbright := wbs
}
newlink := "http://www.google.com"
wbright.Navigate( newlink , 2048)
newlink := "http://www.yahoo.com"
wbright.Navigate( newlink , 2048)
newlink := "http://www.bing.com"
wbright.Navigate( newlink , 2048)
return
'[PA] 업무자동화 > [AH]Autohotkey' 카테고리의 다른 글
AH 역사와 의미 (0) | 2020.06.28 |
---|---|
AH OCR API 사용하기 (0) | 2020.06.27 |
AH HTML 통으로 읽기,요소 읽어내기 (0) | 2020.06.21 |
AH 이미지 크기 알아내기 (0) | 2020.06.21 |
AH 윈도우 요소, HTML 요소 알아내기 (0) | 2020.06.21 |