Imacros SHARED code scripts

I was trying to create a fanpage scraper and wall poster with imacros for the last couple of days, and believe it or not I'm just 1 freaking click away from completing it, but can't figure out a way to do it.

It's when you are about to post something to a wall, you first need to click that field before you start typing - I can't make the imacros bot simulate the click :(.

I can post code here if anybody has an idea how to make it work.

EDIT: The problem is that the text field is not always on the same position, otherwise it would be too easy - just some autoclicker and set it on the text field location. But since some fanpages have long titles that stretch 2 lines, and some fanpages have those images like on profiles (some don't), the location of the field is different depending on the fanpage.

I've tried with CLICK command but it doesn't work. Damn I feel so angry now, so close but so far away...
Send the code over..will see if it is possible to automate it.
 
Send the code over..will see if it is possible to automate it.

I've sent it to your inbox - scraper works on itself if you take it out of the code and adapt a bit to save all the data instead of using and dumping it. However, wall poster fails miserably. The best I could do so far is to set the autoclicker to click on 1 pixel whole the time and that was successfully posting to about 40% of fanpages - the other's had the text field outside the autoclicker clicking point :/
 
I've sent it to your inbox - scraper works on itself if you take it out of the code and adapt a bit to save all the data instead of using and dumping it. However, wall poster fails miserably. The best I could do so far is to set the autoclicker to click on 1 pixel whole the time and that was successfully posting to about 40% of fanpages - the other's had the text field outside the autoclicker clicking point :/

PM'ed you back. :)
 
Do you guys have a copy of the paid versions of iMacros? I really want a copy for the more advanced stuff
 
Last edited by a moderator:
Do you guys have a copy of the paid versions of iMacros? I really want a copy for the more advanced stuff

I tried searching online,but was unable to find any cracked version.
What function do you want to exactly automate?
 
The ff/chme version only allows you to automate browser functions. I want to automate other tasks such as using scrapebox. With enough tinkering I think I can build programs that I will eventually be able to share back with the community.

BTW, the auto anti-spam is hella annoying
 
The ff/chme version only allows you to automate browser functions. I want to automate other tasks such as using scrapebox. With enough tinkering I think I can build programs that I will eventually be able to share back with the community.

BTW, the auto anti-spam is hella annoying

For computer related tasks use WinAutomation.
There was a cracked version posted in BHW. Use the search.
 
Thanks a lot, found it and will give it a try tonight. If a member can up one of the iMacros version that'd be great also
 
I am trying to make an imacro for firefox but keep getting error


RuntimeError: element INPUT specified by TITLE:title was not found, line: 15 (Error code: -921)

The imacro submits my links to socialmarking.com

Code:
VERSION BUILD=7210419 RECORDER=FX
TAB T=1     
CMDLINE !DATASOURCE socialbookmark2.csv
SET !DATASOURCE_COLUMNS 2
SET !LOOP 2
SET !DATASOURCE_LINE {{!LOOP}}
URL GOTO=http://www.SOCIALMARKING.COM 
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:bookMarkDetails ATTR=TITLE:title CONTENT={{!COL1}}       
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:bookMarkDetails ATTR=URL:url CONTENT={{!COL2}}
TAG POS=1 TYPE=INPUT:SUBMIT FORM=NAME:bookMarkDetails ATTR=NAME:SendButton&&VALUE:BOOKMARK<SP>THIS  
TAG POS=1 TYPE=A ATTR=TXT:Back
 
I am trying to make an imacro for firefox but keep getting error


RuntimeError: element INPUT specified by TITLE:title was not found, line: 15 (Error code: -921)

The imacro submits my links to socialmarking.com

Code:
VERSION BUILD=7210419 RECORDER=FX
TAB T=1     
CMDLINE !DATASOURCE socialbookmark2.csv
SET !DATASOURCE_COLUMNS 2
SET !LOOP 2
SET !DATASOURCE_LINE {{!LOOP}}
URL GOTO=http://www.SOCIALMARKING.COM 
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:bookMarkDetails ATTR=TITLE:title CONTENT={{!COL1}}       
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:bookMarkDetails ATTR=URL:url CONTENT={{!COL2}}
TAG POS=1 TYPE=INPUT:SUBMIT FORM=NAME:bookMarkDetails ATTR=NAME:SendButton&&VALUE:BOOKMARK<SP>THIS  
TAG POS=1 TYPE=A ATTR=TXT:Back

Error code : -921 : Element specified by TAG command was not found
I don't know what you are doing wrong.but it works perfectly for my site.


Try recording it again.
 
I am suspecting that it is the datasource. I tried changing many things but it is not working. I am converting my excel sheet to a (MS DOS )csv file and have headers for columns. It is very straight forward. I wrote the script and did not record it as I don't now how to simulate the copy past of information from the excel sheet.
 
I am suspecting that it is the datasource. I tried changing many things but it is not working. I am converting my excel sheet to a (MS DOS )csv file and have headers for columns. It is very straight forward. I wrote the script and did not record it as I don't now how to simulate the copy past of information from the excel sheet.

save the excel file as "CSV - comma delimited".

if it still doesnt work skype me : jairathnem
 
This is an amazing center to learn anything. I am damn newbie when it comes to programming. I wanna ask, in what version do I save the Imacro scripts and how do i call up the .csv files relevant to each
 
This is an amazing center to learn anything. I am damn newbie when it comes to programming. I wanna ask, in what version do I save the Imacro scripts and how do i call up the .csv files relevant to each

The imacros automatically get saved as iim format.

SET !DATASOURCE file.csv - Code used to call the CSV file

the file.csv is stored at C:\Users\*PC-NAME*\Documents\iMacros\Datasources
 
shit.... That is way to direct for a newb. Lets start with this. I copy one of the imacros or i choose one here, copy it into notepad and save in .iimb format right
 
ok ok i get it. Now how do i make this to work or how does it work. Will i load it into my browser. someone respond please
 
shit.... That is way to direct for a newb. Lets start with this. I copy one of the imacros or i choose one here, copy it into notepad and save in .iimb format right

You copy the imacro you found to C:\Users\*PC-NAME*\Documents\iMacros\Macros

Then in the imacro plugin go to edit-->refresh macro list
the copied macro should apprear in the list.
 
hmmmm! The imacro plugin... Where is it located? Is it my browser plugin like firefox and or google chrome
 
The iMacros is simple browser addon. You can use it with both browsers: firefox and chrome. Just check the addons. Once you installed the addon (plugin) the imacros button will appear in the browser tool bar.
 
Back
Top