How to run iMacro's script in many tabs simultaneously?

dekadent30

Elite Member
Joined
Nov 10, 2008
Messages
1,910
Reaction score
1,036
How to create imacros that can visit urls from the provided list in 5 tabs simultaneously? It should visit 5 first urls in 5 tabs, close all and then next 5 urls in 5 new tabs ans so on...
 
Here ya go:
Code:
VERSION BUILD=10022823
TAB T=1
TAB CLOSEALLOTHERS
SET !DATASOURCE c:\Users\YourWindowsUsername\Documents\iMacros\DataSources\urls.csv
SET !LOOP 1
SET !DATASOURCE_LINE {{!LOOP}}
URL GOTO={{!COL1}}
TAB OPEN NEW
TAB T=2
URL GOTO={{!COL2}}
TAB OPEN NEW
TAB T=3
URL GOTO={{!COL3}}
TAB OPEN NEW
TAB T=4
URL GOTO={{!COL4}}
TAB OPEN NEW
TAB T=5
URL GOTO={{!COL5}}
WAIT SECONDS=10
Divide your urls into 5 columns, so there will be one opened per tab. Create an urls.csv file in the DataSource folder of your iMacros installation or adjust the path in line 3 accordingly. Play the macro in loop. You can adjust the wait time in the last line, if you think it's too much or too few.
 
Back
Top