Best Blackhat Forum

Full Version: iMacro help request --- please!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have no coding experience at all so imacros is becoming fun + annoying at same time lol

I just need 1 final line in this script to work so it will be completed(I think) but I can not seem to resolve the problem.

Intent of script is to scrape 411 for mobile phone#s, and record them in col#4 of the same csv that is used for input
.. I have spent a good # of hours on this, including G searches&forums so I realize it is me ... :(

Any solution is appreciated:
Code:
'============================== 411 phn vrf====v.=========
VERSION BUILD=8032216 RECORDER=FX
TAB T=1
TAB CLOSEALLOTHERS
SET !DATASOURCE Rev-Phn-Vrfy.1.csv
SET !DATASOURCE_COLUMNS 4
SET !LOOP 2
SET !DATASOURCE_LINE {{!LOOP}}
SET !ENCRYPTION NO
CLEAR
URL GOTO=http://www.411.com/phone/1-{{!col1}}-{{!col2}}-{{!col3}}
' phone/1-{{!col1}}-{{!col2}}-{{!col3}}  === 123-456-7890
SET !ERRORIGNORE YES
SET !EXTRACT_TEST_POPUP NO
TAG POS=1 TYPE=* ATTR=TXT:*landline* CONTENT=EVENT:FAIL_IF_FOUND
TAG POS=1 TYPE=* ATTR=TXT:*voip* CONTENT=EVENT:FAIL_IF_FOUND
TAG POS=1 TYPE=* ATTR=TXT:*mobile* CONTENT={{!col1}}{{!col2}}{{!col3}}
' CONTENT={{!col1}}{{!col2}}{{!col3}} == 1234567890
TAG POS=1 TYPE=INPUT FILE:Rev-Phn-Vrfy.1.csv ATTR=TXT:{{!col4}}

error =Error -1100: Wrong format of TAG POS=1 TYPE=INPUT FILE:Rev-Phn-Vrfy.1.csv ATTR=TXT:{{!col4}} command
Forgot the question was still here .... without javascript or some other compatible tool, imacros cant add to data in a row, only append to bottom of file
Reference URL's