Hello all, first post here...
I'm having some trouble with Internet Explorer and the WinSetOnTop function.
It just doesn't work.
Quicky Information: The script is supposed to move a window to the top of the screen, and 820px from the right side, then set the window to AlwaysOnTop, so it can lose focus, but remain in view.
Here is the script. Testing against IE 10
I have tested in other browsers, and every other browser works just fine.
I'm having some trouble with Internet Explorer and the WinSetOnTop function.
It just doesn't work.
Quicky Information: The script is supposed to move a window to the top of the screen, and 820px from the right side, then set the window to AlwaysOnTop, so it can lose focus, but remain in view.
Here is the script. Testing against IE 10
[ autoit ] ( Popup )
AutoItSetOption ( "WinTitleMatchMode" , 2 ) Global $xPos = @DesktopWidth - 820 Global $yPos = 0 WinWait ( "" , "TESTING" ) WinSetOnTop ( "", "TESTING", 1 ) WinMove ( "", "TESTING", $xPos, $yPos)
I have tested in other browsers, and every other browser works just fine.