Changing web address valuable by 1
Moderators: JRL, Dorian (MJT support)
Changing web address valuable by 1
I need to have a website loaded
ex. http://www.example.com/hello1
some commands run and then load
ex. http://www.example.com/hello2
run some commands, load
ex. http://www.example.com/hello3
etc, etc, etc... How do i make it so it goes to the next consecutive number in the web address? is there some kind of +1 command after the script's completion?
thanks!
ex. http://www.example.com/hello1
some commands run and then load
ex. http://www.example.com/hello2
run some commands, load
ex. http://www.example.com/hello3
etc, etc, etc... How do i make it so it goes to the next consecutive number in the web address? is there some kind of +1 command after the script's completion?
thanks!
Let>Counter=0
Let>MaxCount=20
Label>MyLoop
If>Counter=%MaxCount%,Done
Add>Counter,1
Run Program>iexplore "http://www.example.com/hello%Counter%.html"
.
.
.
Goto>MyLoop
Label>Done
MessageModal>Done!
Let>MaxCount=20
Label>MyLoop
If>Counter=%MaxCount%,Done
Add>Counter,1
Run Program>iexplore "http://www.example.com/hello%Counter%.html"
.
.
.
Goto>MyLoop
Label>Done
MessageModal>Done!