Imacros SHARED code scripts

Here is a imacro I found in this thread which comments on blogs.

VERSION BUILD=6600217 RECORDER=FX
TAB T=1
SET !ERRORIGNORE YES
SET !ERRORCONTINUE YES
SET !EXTRACT_TEST_POPUP NO




CMDLINE !DATASOURCE allrecipes.CSV
SET !DATASOURCE_COLUMNS 5
SET !DATASOURCE_LINE {{!LOOP}}
URL GOTO={{!COL1}}
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:* ATTR=ID:author CONTENT={{!COL2}}
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:* ATTR=ID:email CONTENT={{!COL3}}
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:* ATTR=ID:url CONTENT={{!COL4}}
TAG POS=1 TYPE=TEXTAREA FORM=ACTION:* ATTR=ID:comment CONTENT={{!COL5}}
'>>>>>>>>>>> Section Divider <<<<<<<<<<<
'PAUSE -- ENTER CAPTCHA AND THEN
'PRESS ANY KEY TO CONTINUE


TAG POS=1 TYPE=INPUT:SUBMIT FORM=ID:commentform ATTR=ID:submit

What I dont like about it is that if a site fails to open, it just stops there and doesnt move ahead. Moreover in some websites you have to click on a checkbox saying "I am not a spammer", it lacks that bit too. If any one can fix these two and specially the first problem.:17:
 
could anyone help me with an imacros that allows you to add friends on facebook from people who like a link that is posted on facebook
 
Hello, I need to hire a imacros coder for a few projects I need. I couldn't find the scripts anywhere on the internet. So please PM me if you know how to code. Thank you!
 
I need a iMacros script that will read a list of Twitter names and unFollow each name on the list ONLT if they are not Following me back. Need to wait a couple minutes between each unFollow as well. IF anyone is able to help
 
Does anyone know how to delay just one input from in an imacro. For example

VERSION BUILD=7401110 RECORDER=FX
TAB T=1
URL GOTO=http://www.google.com/
TAG POS=1 TYPE=TEXTAREA ATTR=ID:chat_text_input CONTENT=test input<SP>me
TAG POS=1 TYPE=A ATTR=ID:speak_button


after it goes to URL GOTO=http://www.google.com/ (line 3), i watch to put a delay of like 10 seconds before it goes to the next line. I want to do this because the site im using the imacros is slow loading.
 
Does anyone know how to delay just one input from in an imacro. For example

VERSION BUILD=7401110 RECORDER=FX
TAB T=1
URL GOTO=http://www.google.com/
TAG POS=1 TYPE=TEXTAREA ATTR=ID:chat_text_input CONTENT=test input<SP>me
TAG POS=1 TYPE=A ATTR=ID:speak_button


after it goes to URL GOTO=http://www.google.com/ (line 3), i watch to put a delay of like 10 seconds before it goes to the next line. I want to do this because the site im using the imacros is slow loading.
!set timeout_page 10
 
I need a iMacros script that will read a list of Twitter names and unFollow each name on the list ONLT if they are not Following me back. Need to wait a couple minutes between each unFollow as well. IF anyone is able to help

That will be difficult to implement in iMacros.

Best is to hire a coder and get it coded in C or .net...etc..
 
Hello, awesome thread! I have a problem implementing imacros with a site called vbox7 / show:whoisonline. I need to go trough all online users see their profile , then go back and see the next profile.It sounds simple but i found it is nearly impossible (maybe because of my lack of knowledge) because it's not numeric based (i can't set it up to open tag :1,2,3 etc) but it's username based.If anyone can help me, i'll be very grateful :)
 
Hello, awesome thread! I have a problem implementing imacros with a site called vbox7 / show:whoisonline. I need to go trough all online users see their profile , then go back and see the next profile.It sounds simple but i found it is nearly impossible (maybe because of my lack of knowledge) because it's not numeric based (i can't set it up to open tag :1,2,3 etc) but it's username based.If anyone can help me, i'll be very grateful :)

Do the job in steps.

1.) Extract all users and save to csv
2.) Load users.csv and loop extraction row by row (profile by profile) saving to second csv

Oftentimes complex extractions are easier when taken in smaller steps.
 
Been working on a weebly account creation macro running in a loop with proxies and have it all working PERFECT -- except if the captcha is wrong and then it just skips and moves onto creating the next account. Any ideas on how to make it try captcha again if failed? I use deathbycaptcha...

Thanks!!
 
Been working on a weebly account creation macro running in a loop with proxies and have it all working PERFECT -- except if the captcha is wrong and then it just skips and moves onto creating the next account. Any ideas on how to make it try captcha again if failed? I use deathbycaptcha...

Thanks!!

why dont you just use pause code on it and do it manually to solve captcha's
 
I hadn't thought about that, but would really prefer to completely automate this so I can run it on my computer at night to create accounts. At the moment I just have it take a screenshot after account creation so I can tell which accounts were not created successfully - then go back and make sure those are the only ones in my weebly-accounts.csv
 
I keep getting this error:
RuntimeError: element INPUT specified by ID:Email was not found, line: 7 (Error code: -921)

This is my first imacros share

Gmail password changer (with 'Buzz' handling)

create a 'gmailaccounts.csv' file with the following column header:

col 1 = username
col 2 = old password
col 3 = new password


Code:
TAB T=1     
TAB CLOSEALLOTHERS       
URL GOTO=https://www.google.com/accounts/ServiceLogin?service=mail&passive=true&rm=false&continue=http%3A%2F%2Fmail.google.com%2Fmail%2F%3Fui%3Dhtml%26zy%3Dl&bsv=zpwhtygjntrz&scc=1&ltmpl=default&ltmplcache=2     
SET !DATASOURCE gmailaccounts.csv
SET !DATASOURCE_COLUMNS 3
SET !LOOP 2
SET !DATASOURCE_LINE {{!LOOP}}
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:https://www.google.com/accounts/ServiceLoginAuth?service=mail ATTR=ID:Email CONTENT={{!COL1}} 
TAG POS=1 TYPE=INPUT:PASSWORD FORM=ACTION:https://www.google.com/accounts/ServiceLoginAuth?service=mail ATTR=ID:Passwd CONTENT={{!COL2}} 
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ACTION:https://www.google.com/accounts/ServiceLoginAuth?service=mail ATTR=NAME:signIn  
SET !TIMEOUT 10
SET !ERRORIGNORE YES 
TAG POS=1 TYPE=A ATTR=TXT:Nah,<SP>go<SP>to<SP>my<SP>inbox<SP>   
SET !ERRORIGNORE NO
SET !TIMEOUT 60 
FRAME F=4  
WAIT SECONDS=15   
TAG POS=1 TYPE=A ATTR=ID::qx   
WAIT SECONDS=8
TAG POS=1 TYPE=A ATTR=TXT:Accounts<SP>and<SP>Import   
WAIT SECONDS=8
TAG POS=1 TYPE=A ATTR=TXT:Google<SP>Account<SP>settings   
TAB T=2     
FRAME F=0     
TAG POS=1 TYPE=A ATTR=TXT:Change<SP>password   
TAG POS=1 TYPE=INPUT:PASSWORD FORM=ACTION:UpdatePasswd ATTR=ID:OldPasswd CONTENT={{!COL2}} 
TAG POS=1 TYPE=INPUT:PASSWORD FORM=ACTION:UpdatePasswd ATTR=ID:Passwd CONTENT={{!COL3}} 
TAG POS=1 TYPE=INPUT:PASSWORD FORM=ACTION:UpdatePasswd ATTR=ID:PasswdAgain CONTENT={{!COL3}} 
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ACTION:UpdatePasswd ATTR=ID:save  
TAG POS=1 TYPE=A ATTR=TXT:Sign<SP>out
 
Gmail Password Changer

Ok i modified the code and now it is working fine
You will have to create a gmailaccounts.csv file and place it in "Datasources" folder
TAB CLOSEALLOTHERS URL GOTO=https://accounts.google.com/ServiceLogin?service=mail&passive=true&rm=false&continue=http://mail.google.com/mail/&scc=1&ltmpl=default&ltmplcache=2
SET !DATASOURCE gmailaccounts.csv
SET !ERRORIGNORE YES
SET !DATASOURCE_COLUMNS 3
SET !LOOP 2
SET !DATASOURCE_LINE {{!LOOP}}
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:https://accounts.google.com/ServiceLoginAuth ATTR=ID:Email CONTENT={{!COL1}}
TAG POS=1 TYPE=INPUT:PASSWORD FORM=ACTION:https://accounts.google.com/ServiceLoginAuth ATTR=ID:Passwd CONTENT={{!COL2}}
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ACTION:https://accounts.google.com/ServiceLoginAuth ATTR=NAME:signIn
SET !TIMEOUT 10
SET !ERRORIGNORE YES
TAG POS=1 TYPE=A ATTR=TXT:Nah,<SP>go<SP>to<SP>my<SP>inbox<SP>
SET !ERRORIGNORE NO
SET !TIMEOUT 60
FRAME F=4
WAIT SECONDS=05
TAG POS=1 TYPE=A ATTR=ID:gbg4
TAG POS=1 TYPE=A ATTR=ID:gb_156
WAIT SECONDS=05
TAB T=2
FRAME F=0
TAG POS=1 TYPE=A ATTR=ID:nav-security
TAG POS=1 TYPE=A ATTR=TXT:Change<SP>password
TAG POS=1 TYPE=INPUT:PASSWORD FORM=ACTION:EditPasswd ATTR=ID:OldPasswd CONTENT={{!COL2}}
TAG POS=1 TYPE=INPUT:PASSWORD FORM=ACTION:EditPasswd ATTR=ID:Passwd CONTENT={{!COL3}}
TAG POS=1 TYPE=INPUT:PASSWORD FORM=ACTION:EditPasswd ATTR=ID:PasswdAgain CONTENT={{!COL3}}
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ACTION:EditPasswd ATTR=ID:save
TAG POS=1 TYPE=A ATTR=TXT:Sign<SP>out

sometimes this TAG POS=1 TYPE=A ATTR=ID:gb_156
will have to be changed to TAG POS=1 TYPE=A ATTR=ID:gb_150
 
Sweet I thanked you for this post we need more contributions on this forum...
 
Here is what i want - Can someone tell me if its possible...

I have 10 sites for backlinks

1) I want to create a new email address

2) I want to create an account on all 10 sites

3) i want to verify all the email (including spam)

4) i want to upload / post my backlinks
 
Back
Top