Imacros SHARED code scripts

Adding my 0.02 to this thread,,

some of you asked how to add random numbers in iMacros
Look at this example:
Code:
var macro;
var jsLF = "\n";
var i, retcode, s, errtext;


for (i=0;i<=1000;i++){

var randomnumber1 = Math.round(Math.random()*110);       [B]///110 is the max value of this rand nr[/B]
var randomnumber2 = Math.round(Math.random()*999);     [B]///999 is the max value of this rand nr,[/B]
var randomnumber3 = Math.round(Math.random()*1100000000000);
var randomnumber4 = Math.round(Math.random()*1100000000000);
[B]var randomnumber5 = Math.round(Math.random()*1248);[/B]
var waitseconds = 8;

/* Create the Macro */
macro = "CODE:";
macro += "SET !ERRORIGNORE YES" + jsLF;
macro += "URL GOTO=SomeUrlHere" + jsLF;
macro += "TAG POS=1 TYPE=INPUT:FILE FORM=NAME:post ATTR=NAME:upfile CONTENT=D:\\2\\[B]" + randomnumber5 + "[/B].jpg" + jsLF;
macro += "TAG POS=1 TYPE=INPUT:SUBMIT FORM=NAME:post ATTR=VALUE:Submit" + jsLF;
macro += "WAIT SECONDS=4" + jsLF;


retcode = iimPlay(macro);
if (retcode < 0) { // an error has occured
errtext = iimGetLastError();
alert(errtext);
}

if (retcode < 0) { // an error has occured
errtext = iimGetLastError();
alert(errtext);
break;
}

}

I somehow managed to mix together javascript & imacros

2852926320_17ae7ac59c.jpg


So to use this replace everything that comes after
macro =
and
macro +=
with your macro code & add " + randomnumber5 + " where you want some random numbers..
then save it as SomeThing.js and run it in imacros FF addon as usual macros. :D Hope I made some sense because English is not my native language :D

edit, forgot to mention that you must add + jsLF; after sach macro line, like:

macro += "SET !ERRORIGNORE YES" + jsLF;
 
Last edited:
I got a tricky little problem, just cant seem to solve :( See pic no spam
www dot yourhelpme dot com/column.JPG


When down loading the data extracted on to the .csv file I need it to write to column ?B? because column ?A? has data that I want to stay intact,
I'm using Firefox Imacros 6.7.0.1 , is there a command to ignore the 1st column, the same way you can miss the 1st row?

thanks all :rolleyes:

The answer to my question is

SET !EXTRACTADD {{!COL1}} :D
 
Bookmarking signups

You need to create your csv file and name it details.csv

The {{COL1}} is for First Name
The {{COL2}} is for Lastname
The {{COL3}} is for Your Username
THE {{COL4}} is for Your Password
The {{COL5}} is for your email address

btw, ive added the details for the entire macro all the way through the macro, the reason for this is, if there are any updates made by any of these sites, then by having them as single bookmarks, you can quickly ammend it. I tend not to use a massive list like this all at once, i think its better broken up and just clicking each one, less errors n shit...

VERSION BUILD=6700624 RECORDER=FX
Tab Open
TAB T=1
SET !DATASOURCE details.csv
SET !DATASOURCE_COLUMNS 5
SET !DATASOURCE_LINE {{!LOOP}}
URL GOTO=http://blinklist.com/index.php
TAG POS=1 TYPE=A ATTR=TXT:Sign<SP>Up<SP>Now<SP>for<SP>Free
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:/user/join ATTR=ID:username CONTENT={{!COL3}}
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:/user/join ATTR=ID:email CONTENT={{!COL5}}
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=ACTION:/user/join ATTR=ID:password1 CONTENT={{!COL4}}
PROMPT Please<SP>enter<SP>the<SP>recaptcha !VAR1
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:/user/join ATTR=ID:recaptcha_response_field CONTENT={{!VAR1}}
TAG POS=1 TYPE=INPUT:CHECKBOX FORM=ACTION:/user/join ATTR=ID:termCondition CONTENT=YES
TAG POS=1 TYPE=BUTTON ATTR=TXT:Sign<SP>me<SP>up!
Tab Open
TAB T=2
SET !DATASOURCE details.csv
SET !DATASOURCE_COLUMNS 7
SET !DATASOURCE_LINE {{!LOOP}}
URL GOTO=http://www.bookmarktracker.com/
TAG POS=1 TYPE=A ATTR=ID:navItem_signup
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:signup_step_1 ATTR=NAME:us_first_name CONTENT={{!COL1}}
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:signup_step_1 ATTR=NAME:us_last_name CONTENT={{!COL2}}
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:signup_step_1 ATTR=NAME:us_email CONTENT={{!COL5}}
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:signup_step_1 ATTR=NAME:us_user_name CONTENT={{!COL3}}
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=NAME:signup_step_1 ATTR=NAME:us_password CONTENT={{!COL4}}
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=NAME:signup_step_1 ATTR=NAME:confirm_password CONTENT={{!COL4}}
TAG POS=1 TYPE=INPUT:CHECKBOX FORM=NAME:signup_step_1 ATTR=ID:N10088 CONTENT=YES
PROMPT Please<SP>enter<SP>the<SP>recaptcha !VAR1
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:signup_step_1 ATTR=NAME:captcha CONTENT={{!VAR1}}
TAG POS=1 TYPE=INPUT:SUBMIT FORM=NAME:signup_step_1 ATTR=VALUE:Continue
Tab Open
TAB T=3
URL GOTO=http://www.buddymarks.com/
TAG POS=1 TYPE=A ATTR=TXT:Join
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:/signup.php?final ATTR=NAME:username CONTENT={{!COL3}}
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:/signup.php?final ATTR=NAME:email CONTENT={{!COL5}}
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=ACTION:/signup.php?final ATTR=NAME:password CONTENT={{!COL4}}
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=ACTION:/signup.php?final ATTR=NAME:password_verify CONTENT={{!COL4}}
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:/signup.php?final ATTR=NAME:firstname CONTENT={{!COL1}}
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:/signup.php?final ATTR=NAME:lastname CONTENT={{!COL2}}
PROMPT Please<SP>enter<SP>the<SP>recaptcha !VAR1
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:/signup.php?final ATTR=NAME:captcha CONTENT={{!VAR1}}
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ACTION:http://buddymarks.com/signup.php?final ATTR=VALUE:Create<SP>Account
Tab Open
TAB T=4
URL GOTO=http://www.connotea.org/
TAG POS=1 TYPE=A ATTR=TXT:sign<SP>up
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:register ATTR=ID:firstname CONTENT={{!COL1}}
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:register ATTR=ID:lastname CONTENT={{!COL2}}
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:register ATTR=ID:username CONTENT={{!COL3}}
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=NAME:register ATTR=ID:password CONTENT={{!COL4}}
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=NAME:register ATTR=ID:passwordconfirm CONTENT={{!COL4}}
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:register ATTR=ID:email CONTENT={{!COL5}}
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:register ATTR=ID:email2 CONTENT={{!COL5}}
TAG POS=1 TYPE=INPUT:SUBMIT FORM=NAME:register ATTR=NAME:button&&VALUE:register
Tab Open
TAB T=5
URL GOTO=http://www.corank.com/
TAG POS=1 TYPE=A ATTR=TXT:Join<SP>coRank
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:tform ATTR=NAME:email CONTENT={{!COL5}}
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=NAME:tform ATTR=NAME:pass2 CONTENT={{!COL4}}
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=NAME:tform ATTR=NAME:pass CONTENT={{!COL4}}
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:tform ATTR=NAME:nick CONTENT={{!COL3}}
PROMPT Please<SP>enter<SP>the<SP>recaptcha !VAR1
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:tform ATTR=NAME:cap CONTENT={{!VAR1}}
TAG POS=1 TYPE=INPUT:BUTTON FORM=NAME:tform ATTR=VALUE:<SP>Create<SP>account<SP>
Tab Open
TAB T=6
URL GOTO=http://digg.com/
TAG POS=1 TYPE=A ATTR=TXT:Join<SP>Digg
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:digg ATTR=NAME:username CONTENT={{!COL3}}
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=NAME:digg ATTR=NAME:password[a] CONTENT={{!COL4}}
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=NAME:digg ATTR=NAME:password CONTENT={{!COL4}}
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:digg ATTR=NAME:email CONTENT={{!COL5}}
TAG POS=1 TYPE=SELECT FORM=NAME:digg ATTR=NAME:birthday[Month] CONTENT=%04
TAG POS=1 TYPE=SELECT FORM=NAME:digg ATTR=NAME:birthday[Day] CONTENT=%8
TAG POS=1 TYPE=SELECT FORM=NAME:digg ATTR=NAME:birthday[Year] CONTENT=%1956
PROMPT Please<SP>enter<SP>the<SP>recaptcha !VAR1
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:digg ATTR=NAME:captcha[input] CONTENT={{!VAR1}}
TAG POS=1 TYPE=INPUT:SUBMIT FORM=NAME:digg ATTR=VALUE:I<SP>agree,<SP>continue...
Tab Open
TAB T=7
URL GOTO=http://www.diigo.com/
TAG POS=1 TYPE=SPAN ATTR=TXT:Join<SP>Diigo
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:registerForm ATTR=ID:username CONTENT={{!COL3}}
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:registerForm ATTR=ID:first_name CONTENT={{!COL1}}
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:registerForm ATTR=ID:last_name CONTENT={{!COL2}}
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:registerForm ATTR=ID:email CONTENT={{!COL5}}
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=NAME:registerForm ATTR=ID:password CONTENT={{!COL4}}
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=NAME:registerForm ATTR=ID:rPassword CONTENT={{!COL4}}
PROMPT Please<SP>enter<SP>the<SP>recaptcha !VAR1
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:registerForm ATTR=ID:recaptcha_response_field CONTENT={{!VAR1}}
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ID:registerForm ATTR=VALUE:Continue
Tab Open
TAB T=8
URL GOTO=http://faves.com/home
TAG POS=1 TYPE=SPAN ATTR=TXT:Join<SP>Now
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:signIn?show=ur ATTR=ID:username CONTENT={{!COL3}}
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=ACTION:signIn?show=ur ATTR=ID:password CONTENT={{!COL4}}
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:signIn?show=ur ATTR=ID:email CONTENT={{!COL5}}
PROMPT Please<SP>enter<SP>the<SP>recaptcha !VAR1
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:signIn?show=ur ATTR=ID:captcha CONTENT={{!1VAR}}
TAG POS=1 TYPE=INPUT:CHECKBOX FORM=ACTION:signIn?show=ur ATTR=ID:terms CONTENT=YES
TAG POS=1 TYPE=A ATTR=TXT:Join<SP>Now
Tab Open
TAB T=9
URL GOTO=http://www.folkd.com/
TAG POS=1 TYPE=STRONG ATTR=TXT:Register
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:/page/register.html ATTR=ID:username CONTENT={{!COL3}}
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:/page/register.html ATTR=ID:email CONTENT={{!COL5}}
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=ACTION:/page/register.html ATTR=ID:password CONTENT={{!COL4}}
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=ACTION:/page/register.html ATTR=ID:passwordagain CONTENT={{!COL4}}
PROMPT Please<SP>enter<SP>the<SP>recaptcha !VAR1
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:/page/register.html ATTR=ID:recaptcha_response_field CONTENT={{!VAR1}}
TAG POS=1 TYPE=INPUT:CHECKBOX FORM=ACTION:/page/register.html ATTR=ID:terms CONTENT=YES
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ID:form_register ATTR=ID:button_register
Tab Open
TAB T=10
URL GOTO=http://www.jumptags.com/
TAG POS=1 TYPE=A ATTR=TXT:Become<SP>a<SP>member
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:fRegister ATTR=ID:login CONTENT={{!COL3}}
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=NAME:fRegister ATTR=ID:password1 CONTENT={{!COL4}}
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=NAME:fRegister ATTR=ID:password2 CONTENT={{!COL4}}
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:fRegister ATTR=ID:email CONTENT={{!COL5}}
TAG POS=1 TYPE=SELECT FORM=NAME:fRegister ATTR=ID:day CONTENT=%04
TAG POS=1 TYPE=SELECT FORM=NAME:fRegister ATTR=ID:month CONTENT=%7
TAG POS=1 TYPE=SELECT FORM=NAME:fRegister ATTR=ID:year CONTENT=%1979
PROMPT Please<SP>enter<SP>the<SP>recaptcha !VAR1
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:fRegister ATTR=ID:captchaUserEntry CONTENT={{!VAR1}}
TAG POS=1 TYPE=INPUT:CHECKBOX FORM=NAME:fRegister ATTR=ID:account_visible CONTENT=YES
TAG POS=1 TYPE=INPUT:CHECKBOX FORM=NAME:fRegister ATTR=ID:agree_terms CONTENT=YES
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ID:fRegister ATTR=ID:btSubmit
Tab Open
TAB T=11
URL GOTO=http://www.linkagogo.com/
TAG POS=2 TYPE=A ATTR=TXT:Setup<SP>a<SP>free<SP>Account
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:/go/UserInfo ATTR=NAME:Username CONTENT={{!COL3}}
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:/go/UserInfo ATTR=NAME:Email CONTENT={{!COL5}}
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=ACTION:/go/UserInfo ATTR=NAME:Password CONTENT={{!COL4}}
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=ACTION:/go/UserInfo ATTR=NAME:Password2 CONTENT={{!COL4}}
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:/go/UserInfo ATTR=NAME:Hint CONTENT={{!COL6}}
PROMPT Please<SP>enter<SP>the<SP>recaptcha !VAR1
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:/go/UserInfo ATTR=NAME:Code CONTENT={{!var1}}
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ACTION:http://www.linkagogo.com/go/UserInfo ATTR=NAME:submit&&VALUE:OK
Tab Open
TAB T=12
URL GOTO=http://www.mixx.com/
TAG POS=1 TYPE=A ATTR=TXT:Not<SP>a<SP>Member?<SP>Join<SP>here!
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:https://www.mixx.com/save_register ATTR=ID:user_emailid CONTENT={{!COL5}}
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=ACTION:https://www.mixx.com/save_register ATTR=ID:user_password CONTENT={{!COL4}}
PROMPT Please<SP>enter<SP>the<SP>recaptcha !VAR1
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:https://www.mixx.com/save_register ATTR=ID:recaptcha_response_field CONTENT={{!VAR1))
TAG POS=1 TYPE=INPUT:IMAGE FORM=ID:login_form ATTR=SRC:https://www.mixx.com/images/buttons/register-continue.gif?1279119313
Tab Open
TAB T=13
URL GOTO=http://www.mobleo.net/
TAG POS=1 TYPE=IMG ATTR=SRC:http://www.mobleo.net/graphics/homeregister.gif
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:form1 ATTR=NAME:username CONTENT=usernameinhere
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=NAME:form1 ATTR=NAME:password CONTENT=pitpasswordinhere
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=NAME:form1 ATTR=NAME:password_verify CONTENT=passwordagain
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:form1 ATTR=NAME:vcode CONTENT=captchainhere
TAG POS=1 TYPE=INPUT:SUBMIT FORM=NAME:form1 ATTR=VALUE:Submit
Tab Open
TAB T=14
URL GOTO=http://www.mister-wong.com/users/register/
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:/users/register/ ATTR=ID:UserName CONTENT={{!COL3}}
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:/users/register/ ATTR=ID:UserEmail CONTENT={{!COL5}}
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=ACTION:/users/register/ ATTR=ID:UserPassword CONTENT={{!COL4}}
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=ACTION:/users/register/ ATTR=ID:UserPassword2 CONTENT={{!COL4}}
TAG POS=1 TYPE=SELECT FORM=ACTION:/users/register/ ATTR=ID:UserGender CONTENT=%female
TAG POS=1 TYPE=SELECT FORM=ACTION:/users/register/ ATTR=ID:UserBirthdayDay CONTENT=%20
TAG POS=1 TYPE=SELECT FORM=ACTION:/users/register/ ATTR=NAME:data[User][birthday_month] CONTENT=%12
TAG POS=1 TYPE=SELECT FORM=ACTION:/users/register/ ATTR=NAME:data[User][birthday_year] CONTENT=%1972
TAG POS=1 TYPE=INPUT:CHECKBOX FORM=ACTION:/users/register/ ATTR=ID:check_agb CONTENT=YES
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ACTION:http://www.mister-wong.com/users/register/ ATTR=VALUE:Register
Tab Open
TAB T=15
URL GOTO=http://www.mypip.com/home/
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:http://www.mypip.com/home/register.html ATTR=NAME:user CONTENT={{!COL3}}
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:http://www.mypip.com/home/register.html ATTR=NAME:email CONTENT={{!COL5}}
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=ACTION:http://www.mypip.com/home/register.html ATTR=NAME:password CONTENT={{!COL4}}
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=ACTION:http://www.mypip.com/home/register.html ATTR=NAME:password2 CONTENT={{!COL4}}
PROMPT Please<SP>enter<SP>the<SP>recaptcha !VAR1
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:http://www.mypip.com/home/register.html ATTR=NAME:code CONTENT={{!VAR1}}
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ACTION:http://www.mypip.com/home/register.html ATTR=NAME:submit_register&&VALUE:Register
Tab Open
TAB T=16
URL GOTO=http://www.netfav.com/
TAG POS=1 TYPE=A ATTR=TXT:SIGN<SP>UP
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:create_user ATTR=NAME:User CONTENT={{!COL3}}
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=NAME:create_user ATTR=NAME:Password CONTENT={{!COL4}}
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=NAME:create_user ATTR=NAME:CPassword CONTENT={{!COL4}}
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:create_user ATTR=NAME:FirstName CONTENT={{!COL1}}
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:create_user ATTR=NAME:LastName CONTENT={{!COL2}}
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:create_user ATTR=NAME:EMail CONTENT={{!COL5}}
PROMPT Please<SP>enter<SP>the<SP>recaptcha !VAR1
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:create_user ATTR=NAME:captcha_code CONTENT={{!VAR1}}
TAG POS=1 TYPE=INPUT:SUBMIT FORM=NAME:create_user ATTR=NAME:submit&&VALUE:Register
Tab Open
TAB T=17
URL GOTO=http://www.propeller.com/
TAG POS=1 TYPE=A ATTR=TXT:Sign<SP>In<SP>or<SP>Sign<SP>Up<SP>for<SP>FREE!
TAG POS=1 TYPE=A ATTR=TXT:create<SP>one...
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:http://www.propeller.com/ajax/security/propellerSignup/?from=signin&c=? ATTR=ID:id_email_address CONTENT={{!COL5}}
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:http://www.propeller.com/ajax/security/propellerSignup/?from=signin&c=? ATTR=ID:id_username CONTENT={{!COL3}}
PROMPT Please<SP>enter<SP>the<SP>recaptcha !VAR1
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:http://www.propeller.com/ajax/security/propellerSignup/?from=signin&c=? ATTR=ID:id_captcha CONTENT={{!VAR1}}
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ACTION:http://www.propeller.com/ajax/security/propellerSignup/?from=signin&c=? ATTR=NAME:submit&&VALUE:Create<SP>Account
Tab Open
TAB T=18
URL GOTO=http://www.qiel.com/
TAG POS=1 TYPE=A ATTR=TXT:Register
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:/register/ ATTR=ID:reg_username CONTENT={{!COL3}}
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:/register/ ATTR=ID:reg_email CONTENT={{!COL5}}
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=ACTION:/register/ ATTR=ID:reg_password CONTENT={{!COL4}}
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=ACTION:/register/ ATTR=ID:reg_verify CONTENT={{!COL4}}
PROMPT Please<SP>enter<SP>the<SP>recaptcha !VAR1
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:/register/ ATTR=ID:recaptcha_response_field CONTENT={{!var1}}
TAG POS=1 TYPE=A ATTR=TXT:Close
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ID:thisform ATTR=NAME:submit&&VALUE:Create<SP>user
Tab Open
TAB T=19
URL GOTO=http://www.sitesays.com/
TAG POS=1 TYPE=A ATTR=TXT:Register
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:/register ATTR=ID:username CONTENT={{!COL3}}
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=ACTION:/register ATTR=ID:pwd1 CONTENT={{!COL4}}
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=ACTION:/register ATTR=ID:pwd2 CONTENT={{!COL4}}
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:/register ATTR=ID:email CONTENT={{!COL5}}
PROMPT Please<SP>enter<SP>the<SP>recaptcha !VAR1
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:/register ATTR=ID:captcha CONTENT={{!VAR1}}
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ACTION:http://www.sitesays.com/register ATTR=NAME:SUBMIT&&VALUE:Register
Tab Open
TAB T=20
URL GOTO=http://spotback.com/
TAG POS=1 TYPE=A ATTR=TXT:Sign<SP>up!
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:NoFormName ATTR=ID:txtUser CONTENT={{!COL3}}
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=NAME:NoFormName ATTR=ID:txtPass1 CONTENT={{!COL4}}
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=NAME:NoFormName ATTR=ID:txtPass2 CONTENT={{!COL4}}
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:NoFormName ATTR=ID:txtEmail CONTENT={{!COL5}}
PROMPT Please<SP>enter<SP>the<SP>recaptcha !VAR1
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:NoFormName ATTR=ID:txtCaptcha CONTENT={{!var1}}
TAG POS=1 TYPE=BUTTON ATTR=TXT:Register
Tab Open
TAB T=21
URL GOTO=http://url.org/
TAG POS=1 TYPE=A ATTR=TXT:Register
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:http://url.org/signup/ ATTR=ID:username CONTENT={{!COL3}}
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:http://url.org/signup/ ATTR=ID:email CONTENT={{!COL5}}
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=ACTION:http://url.org/signup/ ATTR=ID:password CONTENT={{!COL4}}
PROMPT Please<SP>enter<SP>the<SP>recaptcha !VAR1
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:http://url.org/signup/ ATTR=NAME:imagepasswd CONTENT={{!VAR1}}
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ACTION:http://url.org/signup/ ATTR=NAME:submitted&&VALUE:Register



Theres about 20 or so there, ive also got ones that login to the site, and submit the bookmark.

I have also created a signup for article sites, and am currently working on the submission process

I am also working on one to sign up to the web 2.0 sites and blogging sites, then one that will login and also submit. I'll get them looked out this week.

Hope this help someone out.

Peace

J
 
Last edited:
can any one help me with i macros?

i need the script to search for keyword on page and stop the script or prompt something before continue the process on the next page.
 
nice scripts... been using imacros for about 5 years now.. and it is totally awesome.
 
can anybody create a macro that will take a email address from a csv file toa form for the email section and confirm then take a random us zip code for that part and a 5 digit password ?
 
Does anyone have a script for mass hotmail accounts and have them foward to a main email account ?
 
can anybody create a macro that will take a email address from a csv file toa form for the email section and confirm then take a random us zip code for that part and a 5 digit password ?

Yes, you
 
So useful tread , Thx everyone who try to help other to get an easy work easy life.
 
Is there a way to bypass CAPCHA ?
 
Last edited:
This has been a very good thread, learned a lot;
thank you everybody;:):):)

I want to know how you guys make user name/ web addresses for different accounts in Web 2.0 account to handle the duplicate issue.

as you know when using senuke you had an option of having many user names and web addresses, when it was taken another one was replaced, and you could even add numbers at the end of your username and it would make it unique,

the way right now works for me is when the username or web address is taken, it will go to the next site for signup after the error and you will notice many accounts have not been made.

is there a solution for this for imacro either for firefox or VBS?
how you guys do it?

thanks
 
To anyone who can show me how to break the captcha using imacros and decaptcher.com, I will give you my first born child.

Ok I did this and I think I got it working using the imacros search command and regexp attribute. I don't think its an exact keyword search as I'm still completely clueless about constructing regular expressions lol but it works for now. Thank you.

However, I have one more question. The site I'm making the macro for has a captcha image. I figured out how to tie in bypasscaptcha/beatcaptcha solving service, but sometimes they send back the wrong captcha. How can I tell javascript to retry the captcha if incorrect. Right now, I'm using a while loop, but maybe I just have it constructed wrong.

My JS file:

Code:
var keywords=new Array();
keywords[0]="Take a quick survey";
keywords[1]="You are about to take your first survey";
keywords[2]="Are you a robot";
keywords[3]="The code you entered is invalid";

if (iimGetLastExtract() == keywords[2])
    {
        do  
            {
            iimPlay ("docaptcha.iim")
            iimPlay ("searchkeywords.iim")
            }
        while ((iimGetLastExtract() == keywords[2]) ; //Loop docaptcha.iim till keyword isn't found
    }

Peronally, i use another tool: winautomation/ Automate... maybe even ubot to do the checking for me, and IF the captcha works...THEN continue imacro.

Hope that makes sense.

i sent you a private message about using decaptcher.com....
If you can help a brotha out, you get my first child. lol.
 
Hello,

You can try scrapping random name etc at http://www.fakenamegenerator.com then copy them on csv as stated on the script here.

Code:
TAB T=0     
TAB CLOSEALLOTHERS  
FILTER TYPE=IMAGES STATUS=ON 
SET !EXTRACT_TEST_POPUP NO   
URL GOTO=http://www.fakenamegenerator.com
TAG POS=1 TYPE=INPUT:IMAGE FORM=NAME:options ATTR=
WAIT SECONDS=1
TAG POS=1 TYPE=SPAN ATTR=CLASS:given-name&&TXT:* EXTRACT=TXT
WAIT SECONDS=1
TAG POS=1 TYPE=SPAN ATTR=CLASS:family-name&&TXT:* EXTRACT=TXT
WAIT SECONDS=1
TAG POS=27 TYPE=LI ATTR=TXT:* EXTRACT=TXT 
WAIT SECONDS=1
TAG POS=23 TYPE=LI ATTR=TXT:* EXTRACT=TXT
WAIT SECONDS=1
TAG POS=1 TYPE=SPAN ATTR=CLASS:value&&TXT:* EXTRACT=TXT
WAIT SECONDS=1
TAG POS=1 TYPE=SPAN ATTR=CLASS:postal-code&&TXT:* EXTRACT=TXT  
SAVEAS TYPE=EXTRACT FOLDER=C:\data FILE={{!NOW:ddmmyyyy}}
CLEAR
The result would be:
Code:
"Andrew","Manno","Losey ","uiH0IeXoh5 ","[email protected]","22653" 
"George","Child","Jackson ","ete7liCheZ3 ","[email protected]","95113"
Then you can use the result csv to fill the RED value eg in my gmail account creator;
Code:
TAB T=1     
TAB CLOSEALLOTHERS
SET !DATASOURCE gname.csv
SET !DATASOURCE_COLUMNS 5
SET !LOOP 1
SET !DATASOURCE_LINE {{!LOOP}}
TAB OPEN
TAB T=2 
URL GOTO=http://mail.google.com/mail/signup    
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:createaccount ATTR=ID:FirstName CONTENT=[COLOR=Red]{{!COL1}}[/COLOR]
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:createaccount ATTR=ID:LastName CONTENT=[COLOR=Red]{{!COL2}}[/COLOR]
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:createaccount ATTR=ID:Email CONTENT=[COLOR=Red]{{!COL1}}{{!COL2}}{{!COL3}}[/COLOR]
TAG POS=1 TYPE=INPUT:BUTTON FORM=NAME:createaccount ATTR=VALUE:check<SP>availability!  
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=NAME:createaccount ATTR=ID:Passwd CONTENT=[COLOR=Red]{{!COL4}}[/COLOR]
TAG POS=1 TYPE=INPUT:PASSWORD FORM=NAME:createaccount ATTR=ID:PasswdAgain CONTENT=[COLOR=Red]{{!COL4}}[/COLOR]
TAG POS=1 TYPE=INPUT:CHECKBOX FORM=NAME:createaccount ATTR=ID:PersistentCookie CONTENT=NO
TAG POS=1 TYPE=INPUT:CHECKBOX FORM=NAME:createaccount ATTR=ID:smhck CONTENT=NO
TAG POS=1 TYPE=SELECT FORM=NAME:createaccount ATTR=ID:questions CONTENT=4 
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:createaccount ATTR=ID:IdentityAnswer CONTENT=[COLOR=Red]{{!COL3}}[/COLOR]
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:createaccount ATTR=ID:SecondaryEmail CONTENT= 
TAG POS=1 TYPE=IMG ATTR=ALT:Visual<SP>verification  
PROMPT Please<SP>enter<SP>security<SP>code: !VAR1
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:createaccount ATTR=ID:newaccountcaptcha CONTENT={{!VAR1}}
TAG POS=1 TYPE=SELECT FORM=NAME:createaccount ATTR=ID:loc CONTENT=138
TAG POS=1 TYPE=INPUT:SUBMIT FORM=NAME:createaccount ATTR=ID:submitbutton 
WAIT SECONDS=10


nice script here, I am not good with scripting, if anyone can help to make some changes,
to avoid having your registration process stall by a taken username,
how you can add couple of random numbers at the end of name that is pulled? so the username would become unique.
that would be nice.
 
Back
Top