hi, i have some very easy question, but i can't find the answer anywhere...
i'd wish to do this:
open a new tab and then i should go to the url i specified, then open another one and so on.. (i think i'll do this thing for 10 times).
please can you help me? can you tell me the code i need to put in?
Some newbie question
Forum rules
Before asking a question or reporting an issue:
1. Please review the list of FAQ's.
2. Use the search box (at the top of each forum page) to see if a similar problem or question has already been addressed.
3. Try searching the iMacros Wiki - it contains the complete iMacros reference as well as plenty of samples and tutorials.
4. We can respond much faster to your posts if you include the following information: CLICK HERE FOR IMPORTANT INFORMATION TO INCLUDE IN YOUR POST
Before asking a question or reporting an issue:
1. Please review the list of FAQ's.
2. Use the search box (at the top of each forum page) to see if a similar problem or question has already been addressed.
3. Try searching the iMacros Wiki - it contains the complete iMacros reference as well as plenty of samples and tutorials.
4. We can respond much faster to your posts if you include the following information: CLICK HERE FOR IMPORTANT INFORMATION TO INCLUDE IN YOUR POST
Re: Some newbie question
You can do this using this macro:
-NOTE:
THIS MACRO IS ONLY FOR IF YOU WANT TO OPEN THE SAME URL OVER AND OVER AGAIN, OTHERWISE USE THIS MACRO:
Code: Select all
T={{!LOOP}}
URL GOTO=http://example1.com
TAB OPEN
THIS MACRO IS ONLY FOR IF YOU WANT TO OPEN THE SAME URL OVER AND OVER AGAIN, OTHERWISE USE THIS MACRO:
Code: Select all
TAB OPEN
T=2
URL GOTO=http://example1.com
TAB OPEN
T=3
URL GOTO=http://example2.com
TAB OPEN
T=4
URL GOTO=http://example3.com
TAB OPEN
T=5
URL GOTO=http://example4.com
TAB OPEN
T=6
URL GOTO=http://example5.com
TAB OPEN
T=7
URL GOTO=http://example6.com
TAB OPEN
T=8
URL GOTO=http://example7.com
TAB OPEN
T=9
URL GOTO=http://example8.com
TAB OPEN
T=10
URL GOTO=http://example9.com
-322126384