Imacros question.

tranza

Power Member
Joined
Jan 9, 2012
Messages
706
Reaction score
136
Im tryna building a wordpress blog with imacros, but it quiet confusing due to the lack of good tutorials/information.

VERSION BUILD=7601105 RECORDER=FX
TAB T=1
TAB CLOSEALLOTHERS
URL GOTO=https://signup.wordpress.com/signup/
TAB OPEN
TAB T=2
URL GOTO=www.fakemailgenerator.com/
TAG POS=1 TYPE=EMBED ATTR=ID:ZeroClipboardMovie_1
TAB T=1
FRAME F=0
TAG POS=1 TYPE=INPUT:EMAIL FORM=NAME:setupform ATTR=ID:user_email CONTENT=

How do i paste the copied email which is in the clipboard to the email content part?.
 
i is not impossible but hard
first you will need to learn java script
you are using simple ini file
if you learnt java then you are king of macros
 
What?, i just need a simple way to ctrl v in imacros
 
I think this would be much easier to accomplish in the scripting edition of imacros.
 
You can solve this using EXTRACT and EVAL instead of ctrl+v.
I've solved your problem. I've uploaded it here because I'm not allowed to post url's. And there are few of theme in the code.
Code:
mediafire . com / view / ?yk7tlpdi1unsusf
 
You can solve this using EXTRACT and EVAL instead of ctrl+v.
I've solved your problem. I've uploaded it here because I'm not allowed to post url's. And there are few of theme in the code.
Code:
mediafire . com / view / ?yk7tlpdi1unsusf

Hi, im getting this error SyntaxError: wrong format of SET command, line: 11 (Error code: -910).

Thanks.
 
Are you using it in iMacros browser or Mozilla or any other regular browser?
It works ok for me in both Mozilla and Pale Moon
 
Are you using it in iMacros browser or Mozilla or any other regular browser?
It works ok for me in both Mozilla and Pale Moon

Im using imacros for firefox.
VERSION BUILD=7601105 RECORDER=FX
TAB T=1
URL GOTO=about:newtab
URL GOTO=wordpress.com/
TAG POS=1 TYPE=H4 ATTR=TXT:Get<SP>Started
TAB OPEN
TAB T=2
URL GOTO=www.fakemailgenerator.com/
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:# ATTR=ID:fName EXTRACT=TXT
TAG POS=1 TYPE=SPAN ATTR=CLASS:center<SP>jcf-unselectable&&TXT:@* EXTRACT=TXT
SET !VAR1 EVAL("var s=\"{{!EXTRACT}}\";s=s.replace(\"[EXTRACT]\"
TAB T=1
FRAME F=0
TAG POS=1 TYPE=INPUT:EMAIL FORM=NAME:setupform ATTR=ID:user_email CONTENT={{!VAR1}}

Maybe i missed something.
 
Did you try:

SET !CLIPBOARD {{!EXTRACT}}
SaveAs Type=Extract Folder=* File=Clip_Board.Csv

This is save data directly into a CSV file, which you can re-use in your code through:

Cmdline !Datasource Clip_Board.Csv
Set !Datasource_Columns 1
Set !Loop 1
Set !Datasource_line {{!Loop}}

Prompt {{!Col1}}

{{!Col1}} = Pasted Data!

Let me know if it is helpful! There are advanced solutions as well.
Hi, im need to imacro. But fakeemailgenerator using a java button to generate the copy, if i use extract it will input a random code but not the email.
 
@tranza,

I don't know about you, what you are up to however will appreciate if you can share some good idea. Anyways, I've developed an idea, right now, while responding this thread and would appreciate if you SEO guys can provide feedback. If I find it usefull, I'll proceed further.

1. Goto fakemailgenerator.com & Copy generated email
2. Goto wordpress.com, registered with copied email and dummy password
3. Go back to fakemailgenerator.com and verify account (it will auto sign-in wordpress account)
4. Goto 'add new post' and post a ad from csv file (col1 = subject, col2 = body etc..)
5. Log-off account
6. Repeat the same

Above process will be fully automated through iMacro (JS based). The question is, should I do it? I got a B2B website with tons of products along with their descriptions, images, keywords etc. If I can post individual product or couple of products in one account. Would that be a good idea and can it help me get better ranking?


My idea is similar to your, what i wanna make is a wordpress bot to mass make tier 2 wordpress blog. Basicly this is the process.
1. Goto fakemailgenerator.com & Copy generated email
2. Goto anonymous.org
3. Goto wordpress.com, registered with copied email and dummy password
4. Go back to fakemailgenerator.com and verify account (it will auto sign-in wordpress account)
5. Make 5 blog per account, change blog/title description, delete hello post.
6. Post one spun article to each blog
7. Put in a csv the URL
This would be ideal to make 1,000 blog on tier 2, them spam those with hundreds of hundreds of xrumer/scrapebox blast.


PD:The above macro work like a charm, thanks!
 
Last edited:
Back
Top