Hello
Needs to be imacros for firefox.
This Imacro Script will help you to invite people to you group by email in bulk.
1. Save in your "C:\Users\YOURPCUSERNAME\Documents\iMacros\Datasources" a file "email.csv" with emails you want, like:
2. Save all script down as facebook_group_email_inviter.js because it written in java script. Save it to you iMacros folder and play the script. when it run it prompt with account no. put how many email you have in you txt or csv file. then prompt with file name put your email file name That in you Datasourses for example emails.csv and then it promt with group id put you group id and that it it run and invite by email 5 at a time.. hope this can help you guys.
I tested it in Firefox and It Works.
[HIDE]
[/HIDE]
Needs to be imacros for firefox.
This Imacro Script will help you to invite people to you group by email in bulk.
1. Save in your "C:\Users\YOURPCUSERNAME\Documents\iMacros\Datasources" a file "email.csv" with emails you want, like:
2. Save all script down as facebook_group_email_inviter.js because it written in java script. Save it to you iMacros folder and play the script. when it run it prompt with account no. put how many email you have in you txt or csv file. then prompt with file name put your email file name That in you Datasourses for example emails.csv and then it promt with group id put you group id and that it it run and invite by email 5 at a time.. hope this can help you guys.
I tested it in Firefox and It Works.
[HIDE]
Code:
var i=0;
var x=prompt("how many account in your file.",2);
var file=prompt("file name.","example.csv");
var link=prompt("your group link.","");
iimPlay("CODE:"+"URL GOTO="+link+"")
macro ="CODE:";
macro += "SET !ERRORIGNORE YES" + "\n";
macro += "SET !DATASOURCE "+file+"" + "\n";
for (i=1; i <= x; i++)
{
macro += "TAG POS=1 TYPE=A ATTR=TXT:Invite<SP>by<SP>Email" + "\n";
macro += "WAIT SECONDS=1" + "\n";
macro += "SET !LOOP "+i+"" + "\n";
macro += "WAIT SECONDS=0.5" + "\n";
macro += "TAG POS=1 TYPE=INPUT ATTR=ID:groupMembersInput CONTENT={{!COL1}}" + "\n";
i++;
macro += "SET !LOOP "+i+"" + "\n";
macro += "WAIT SECONDS=0.5" + "\n";
macro += "TAG POS=1 TYPE=INPUT ATTR=ID:groupMembersInput CONTENT={{!COL1}}" + "\n";
i++;
macro += "SET !LOOP "+i+"" + "\n";
macro += "WAIT SECONDS=0.5" + "\n";
macro += "TAG POS=1 TYPE=INPUT ATTR=ID:groupMembersInput CONTENT={{!COL1}}" + "\n";
i++;
macro += "SET !LOOP "+i+"" + "\n";
macro += "WAIT SECONDS=0.5" + "\n";
macro += "TAG POS=1 TYPE=INPUT ATTR=ID:groupMembersInput CONTENT={{!COL1}}" + "\n";
i++;
macro += "SET !LOOP "+i+"" + "\n";
macro += "WAIT SECONDS=0.5" + "\n";
macro += "TAG POS=1 TYPE=INPUT ATTR=ID:groupMembersInput CONTENT={{!COL1}}" + "\n";
macro += "WAIT SECONDS=2" + "\n";
macro += "TAG POS=1 TYPE=BUTTON FORM=ID:* ATTR=TXT:Invite" + "\n";
macro += "WAIT SECONDS=2" + "\n";
macro += "TAG POS=1 TYPE=BUTTON FORM=ID:* ATTR=TXT:Done" + "\n";
}
iimPlay(macro,25)
iimDisplay("Current loop is: "+i)
iimDisplay("New Page")
[/HIDE]