clearguy Posted June 9, 2006 Posted June 9, 2006 Hi, I want to make a loop in this script,i want it to wait until a web site is completely loaded,to see if it's loaded it search a word on this page,but I tryed to make a loop it doesn't work: $title = "Title - Internet Explorer" If WinGetText($title,"advanced functions")Then MsgBox(0,"info","website loaded") EndIf This is the code which does'nt work: $title = "Title - Internet Explorer" Do Sleep(200) Until (WinGetText($title,"advanced functions")) <> 1 If WinGetText WinGetText($title,"advanced functions") Then MsgBox(0,"info","website loaded") EndIf Thanx for help I've never met anyone who codes binary. StringMultiInsert()SOW EncryptFrench autoit forum - forum français
Moderators SmOke_N Posted June 9, 2006 Moderators Posted June 9, 2006 (edited) You need to look at IE.au3 and IE.au3 Help to use browser options with Internet Explorer.Edit:And Beta Edited June 9, 2006 by SmOke_N 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.
clearguy Posted June 9, 2006 Author Posted June 9, 2006 Thanx that is what I searched for :"> But when I try to use this commande #include <IE.au3> _IELoadWait ( $o_object [, $i_delay = 0 [, $i_timeout = -1]] ) What is the Object variable of an InternetExplorer.Application? I have done that:include <IE.au3> If _IELoadWait("http://www.my_site_to_check.html") Then MsgBox(0,"info","Page chargée") EndIf But when i start it it says AutoIt Error - Line 261 (File"C:\Program Files\AutoIt3\include\IE.au3") Case "0" Error: " Case " statement with no matching "Select" statement I've never met anyone who codes binary. StringMultiInsert()SOW EncryptFrench autoit forum - forum français
Valuater Posted June 9, 2006 Posted June 9, 2006 it should be #include <IE.au3> _IECreate("http://www.my_site_to_check.html") the load-wait is built into this command 8)
Simucal Posted June 9, 2006 Posted June 9, 2006 Then use IE.au3 to get the source, and do a StringInStr() to see if "advanced functions" is in it. AutoIt Scripts:Aimbot: Proof of Concept - PixelSearching Aimbot with several search/autoshoot/lock-on techniques.Sliding Toolbar - Add a nice Sliding Toolbar to your next script. Click the link to see an animation of it in action!FontInfo UDF - Get list of system fonts, or search to see if a particular font is installed.Get Extended Property UDF - Retrieve a files extended properties (e.g., video/image dimensions, file version, bitrate of song/video, etc)
clearguy Posted June 9, 2006 Author Posted June 9, 2006 Nice, but i have thirs error(look at attachment) I've never met anyone who codes binary. StringMultiInsert()SOW EncryptFrench autoit forum - forum français
clearguy Posted June 9, 2006 Author Posted June 9, 2006 It is good I had to use the beta version I've never met anyone who codes binary. StringMultiInsert()SOW EncryptFrench autoit forum - forum français
Moderators SmOke_N Posted June 9, 2006 Moderators Posted June 9, 2006 It is good I had to use the beta version LOL, didn't I put that in my edit 2 hours ago? , glad you got it working... 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.
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