Please Help,
This is what I got so far
---------------------------------------------------------------------------
Run("C:\\Program Files\\Internet Explorer\\iexplore.exe www.mysite.com", "", @SW_MAXIMIZE)
Sleep(5000)
AutoItSetOption("WinTitleMatchMode", 2)
$x = StatusbarGetText("Internet Explorer")
---------------------------------------------------------------------------
Now this is what I want to say :-
While $x is not equal to opening page, do nothing and loop back, else minimize the page.
Basically this is how I want it to work :-
The script opens www.mysite.com
I click a link on mysite.com
The statusbartext changes and say's "opening page, blah blah"
Autoit detects this and minimises the IE window
If auto does not see opening page, it loops till it does.
I'm struggling with the loop and detection.
Any pointers?
Mabsey