So I Made My First Bot With Imacros

mate , Can u share the youtube tool ?


Sorry noob Question here, but what does this do for you? Are you comenting on your own videos so they rank higher in YT so you get more hits on your video?

Picking up new ideas daily, thanks for your info!! :D
 
Besides posting on youtube comments, what are some other ideas you all have used Imacros for?

Could it work posting on Craigslist or in forums?
 
This thread has changed how I will use imacros forever :-D

Thanks!

I have tried using imacros on CL, but it doesn't really work. I'm sure there is a way, though. Backpage macros are easy to make, hint hint.
 
I am working on my own link wheel tool now...also automating my link building on the profile sites. Thanks for bringing this to my attention hehe.
 
I haven't tested your code, but that sounds like you need to use proxies. Yahoo does that when you keep registering from the same IP.



So then to use automation on sites that don't allow registering form the same IP the answer that can be automated is what ?
 
Hey, I am using IMacros and you can automat nearly everything with that. I have just a few more question:

How to deal with captchas manually (I want to get a pop-up, when I need to enter a captcha)?

Which code do you use to confirm registration mails (click the link in registration mails)?

Which code do you use to extract username and passwords from confirmation-mails?

Thanks a lot guys!
 
Thanks for the advice how to deal with captchas manually!

But how about the following:

Which code do you use to confirm registration mails (click the link in registration mails)?
Which code do you use to extract username and passwords from confirmation-mails?

Thanks a lot!
 
Thanks for the advice how to deal with captchas manually!

But how about the following:

Which code do you use to confirm registration mails (click the link in registration mails)?
Which code do you use to extract username and passwords from confirmation-mails?

Thanks a lot!

Your best bet would be to download the trial scripting version. Then open the Imacros Browser and use the extraction wizard. After you find the extraction point transfer the code to firefox. Thats how I do it...
 
Your best bet would be to download the trial scripting version. Then open the Imacros Browser and use the extraction wizard. After you find the extraction point transfer the code to firefox. Thats how I do it...

So when you extract those data, like a password from an email, which code do you use to save it in a txt or csv?
 
Been using this for ahwhile, Captcha beating is easy, you just need to use the right service. Once you become a pro you will realize why you need something better like their scripting version. there is no error handling with imacros. You will eventually need conditional error handling to get very large scale. Imacros is nice in the sense that you can get sometihng up and working very quickly.
 
So when you extract those data, like a password from an email, which code do you use to save it in a txt or csv?

Code:
SAVEAS TYPE=EXTRACT FOLDER=C:\Users\family\Documents\iMacros\Datasources FILE=usernameandpassword.csv


Change the directory and the file name.


Oh and LightHouse is right, without the scripting version you can't handle the errors. Simple stuff like if the captchas doesn't go through the first time when entered, it will throw off the whole macro.

I have the scripting version and I'm using VB.NET to handle errors. I'm trying to learn all this in a matter of days, and its frustrating.
 
That really sounds frustrating! How do you deal with VB to handle those errors like a page that doesnt load?
 
Last edited:
PROMPT Please<SP>enter<SP>the<SP>recaptcha !VAR1
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:/page/submit.html ATTR=ID:recaptcha_response_field CONTENT={{!VAR1}}

Another question regarding captchas: Is it possible to load the captcha image in the pop-up ?
 
i am willing to create a linkwheel program thing for freethat works through imacros if you give me the list of sites i should include...PM me the sites if interested
 
i am willing to create a linkwheel program thing for freethat works through imacros if you give me the list of sites i should include...PM me the sites if interested

Sounds quite interesting! How do you deal with confirmation mails and passwords sent by mail?
 
Sounds quite interesting! How do you deal with confirmation mails and passwords sent by mail?

Hey pizzafasie look into the "Wildcard" of Imacros. Thats how you set it up to click confirmation links in the email. With my Tubemogul creator I had to set it up to verify the email address. What you do is record a Imacros clicking the link.

Here is a youtube verification link:

Code:
http://www.google.com/accounts/VE?service=youtube&c=CMuX35ubiLSsGRC2xc3qhcO2c08&hl=en

Well with the "Wildcard" you can remove the part of the sting (link) that changes in every confirmation email, and then add this character to the end *

So your Imacro would look something like this:

Code:
TAG POS=1 TYPE=A ATTR=TXT:http://www.google.com/accounts/*

By doing that Imacros will read the link and click it, avoiding the extra characters in the string.

I almost positive this is what you have been looking for.
Here is more info on "Wildcards".

http://wiki.imacros.net/Form_Filling#Wildcards
 
Code:
SAVEAS TYPE=EXTRACT FOLDER=C:\Users\family\Documents\iMacros\Datasources FILE=usernameandpassword.csv
Change the directory and the file name.


Oh and LightHouse is right, without the scripting version you can't handle the errors. Simple stuff like if the captchas doesn't go through the first time when entered, it will throw off the whole macro.

I have the scripting version and I'm using VB.NET to handle errors. I'm trying to learn all this in a matter of days, and its frustrating.


This is EXACLTEY where i am at... have to learn VB or VBS. i usually outsource coding but that would make creating macros take FOREVER to have to wait on someone else. very frustrating to try to learn something that fast. I have everything automated but when there is an issue it stops the whole boat negating the time i am saving.
 
Back
Top