This script works, but I think there's an issue with the IE.au3?
Error
Line 560 (File etc... \include\ie.au3"): WEND WEND^ERROR Error: The requested action with this object has failed.
here's my code:
#include<ie.au3> $sUrl = "http://Denverapps/opusvision.aspx" $HWND = WinGetHandle("[ACTIVE]") starter() Func starter() if _IEAttach($HWND, "HWND") Then dothis() Else Local $oIE = _IECreate($sUrl) dothis() EndIf EndFunc Func Dothis() exit EndFunc