[FREE] Auto Post Imacros Script For Blogger

Illgetitdone

Registered Member
Joined
Jul 13, 2011
Messages
68
Reaction score
2
Here is an interesting imacros script that I found:

Here is what it does:

Code:
hxxp://www.youtube.com / watch ? v=QFy4W_EPT24

Here is the code:

Code:
VERVERSION BUILD=6240709 RECORDER=FX
TAB T=1
URL GOTO=http://www.blogger.com/home
TAG POS=1 TYPE=DIV ATTR=CLASS:cssButtonInner
SET !ERRORIGNORE YES
SET !DATASOURCE C:\csv\blogger.csv
SET !DATASOURCE_COLUMNS 3
SET !LOOP 1
SET !DATASOURCE_LINE {{!LOOP}}
SET !ERRORIGNORE YES
TAG POS=1 TYPE=SPAN ATTR=ID:ShowSourceEditor&&CLASS:
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:stuffform ATTR=ID:f-title CONTENT={{!COL1}}
TAG POS=1 TYPE=TEXTAREA FORM=NAME:stuffform ATTR=ID:textarea CONTENT={{!COL2}}
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:stuffform ATTR=ID:post-labels CONTENT={{!COL3}}
TAG POS=1 TYPE=DIV ATTR=CLASS:cssButtonInner
But it is missing the most important part, the content part.

Every articles out there have comma.

It won't be compatible with .csv file.

Can any coder help me with that.
 
Last edited:
you don't need a coder. Simply enclose text with parenthesis - " in the csv file. iMacros manages the rest for you.

your .csv should look like that:

col1,col2,col3
content col1,"content header 2 ,that contains, commas like that one here - ,",contentcol3
 
Back
Top