Rusty911 Posted October 28, 2008 Posted October 28, 2008 (edited) Lets say I have a large list of URLs to visit. Each one is separate from the next only by a digit. Example: _IENavigate ($oIE, "https://www.google.com/search.php?find=[color="#FF0000"][b]01[/b][/color]") Then have it wait for 30 seconds then go to _IENavigate ($oIE, "https://www.google.com/search.php?find=[color="#FF0000"][b]02[/b][/color]") How would I do this without having a thousand different Navigates? Sorry one other question, is there a way to click a image that would normally open in a new tab, but have the tab be closed immediately, or not opened in the first place? Edited October 28, 2008 by Rusty911
Moderators big_daddy Posted October 28, 2008 Moderators Posted October 28, 2008 Something like this should work... For $i = 1 To 10 ConsoleWrite(StringFormat("%02i\n", $i) & @CR) _IENavigate($oIE, "https://www.google.com/search.php?find=" & StringFormat("%02i\n", $i)) Next
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