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

Posted by Weneedu
,


출처: https://privatedevelopnote.tistory.com/81 [개인노트]