matthewst Posted September 8, 2006 Posted September 8, 2006 here is the script #include <IE.au3> Opt("WinTitleMatchMode", 4) $sURL = "https://intranet/internalpage.asp" $f_visible = 0 $oIE = _IECreate($sURL, $f_visible, 0) $hwnd = _IEPropertyGet($oIE, "hwnd") WinSetState($hwnd, "", "") _IEAction($oIE, "") $sHTML = _IEBodyReadHTML($oIE) While WinExists($hwnd) _IEAction($oIE, "refresh") $sTemp = _IEBodyReadHTML($oIE) If $sTemp <> $sHTML Then MsgBox(0, "", "New Update!") $sHTML = $sTemp EndIf ; Change this to control the time between checks Sleep(5000) WEnd
Moderators SmOke_N Posted September 8, 2006 Moderators Posted September 8, 2006 What version are you compiling with? Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
matthewst Posted September 8, 2006 Author Posted September 8, 2006 I'm retarded... when i compiled with the beta it worked fine Thanks smoke!
GaryFrost Posted September 8, 2006 Posted September 8, 2006 I'm retarded...when i compiled with the beta it worked fineThanks smoke!You said it not us....http://www.autoitscript.com/fileman/users/gafrost/heresyoursign.jpglol SciTE for AutoItDirections for Submitting Standard UDFs Don't argue with an idiot; people watching may not be able to tell the difference.
MHz Posted September 8, 2006 Posted September 8, 2006 I'm retarded...when i compiled with the beta it worked fineThanks smoke!I would expect the script to work with the v3.2.0.1 release version also.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now