bakxos
Regular Member
- Aug 8, 2010
- 498
- 292
I have seen some posts that are asking for this solution so I though that I would post this.
Imacros is a free firefox (compatible with chrome too but I have tested it this macro only with firefox) extension that allows you to automate things.
So what is the catch? I dont have excel (i know i am lazy) so i am using openoffice. Openoffice is great but a bit buggy so pasting a super span article in a cell is not possible.
Therefore, the macro clicks the necessary buttons and submits everything (titles, project number, keywords,urls etc etc) but the article itself. You then have 5 secs to paste your article in the box.
You need to have the macro in the folder and a datafile that has:
Column 1. Project number (1-to whatever or actual project number)
Column 2.Keyword 1
Column 3. Url1
Column 4. Keyword 2
Column 5. Url2
Column 6. Keyword 3
Column 7. Url 3
Column 8. Title of the article in spun format.
Change the name of the csv file to whatever your filename is.
It should take 5 min to submit 50-60 projects if you make the file and have the article ready. Then doing another project is quite easy.Cheers.
Imacros is a free firefox (compatible with chrome too but I have tested it this macro only with firefox) extension that allows you to automate things.
So what is the catch? I dont have excel (i know i am lazy) so i am using openoffice. Openoffice is great but a bit buggy so pasting a super span article in a cell is not possible.
Therefore, the macro clicks the necessary buttons and submits everything (titles, project number, keywords,urls etc etc) but the article itself. You then have 5 secs to paste your article in the box.
You need to have the macro in the folder and a datafile that has:
Column 1. Project number (1-to whatever or actual project number)
Column 2.Keyword 1
Column 3. Url1
Column 4. Keyword 2
Column 5. Url2
Column 6. Keyword 3
Column 7. Url 3
Column 8. Title of the article in spun format.
Change the name of the csv file to whatever your filename is.
Code:
VERSION BUILD=7401110 RECORDER=FX
TAB T=1
TAB CLOSEALLOTHERS
VERSION BUILD=7000908 RECORDER=FX
TAB T=1
TAB CLOSEALLOTHERS
CMDLINE !DATASOURCE [FONT=Arial Black][B]NAMEOFCSVFILE[/B][/FONT].csv
SET !ERRORIGNORE YES
'Number of columns in the CSV file. This must be accurate!
SET !DATASOURCE_COLUMNS 8
SET !ERRORIGNORE YES
'Start at line 2 to skip the header in the file
SET !LOOP 1
'Increase the current position in the file with each loop
SET !DATASOURCE_LINE {{!LOOP}}
URL GOTO=http://authoritylinknetwork.com/home.php
TAG POS=1 TYPE=SPAN ATTR=TXT:Submit<SP>Article
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:farticlesadd ATTR=ID:x_project_title CONTENT={{!COL1}}
TAG POS=1 TYPE=TEXTAREA FORM=NAME:farticlesadd ATTR=ID:x_title CONTENT={{!COL8}}
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:farticlesadd ATTR=ID:x_keyword1 CONTENT={{!COL2}}
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:farticlesadd ATTR=ID:x_url1 CONTENT={{!COL3}}
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:farticlesadd ATTR=ID:x_url2 CONTENT={{!COL5}}
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:farticlesadd ATTR=ID:x_keyword2 CONTENT={{!COL4}}
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:farticlesadd ATTR=ID:x_url3 CONTENT={{!COL7}}
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:farticlesadd ATTR=ID:x_keyword3 CONTENT={{!COL6}}
wait seconds=5
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ID:farticlesadd ATTR=ID:newbutton
Last edited: