Imacro..!

Verynew

Registered Member
Joined
Jan 18, 2011
Messages
89
Reaction score
3
Guys

I am really in a position to sort this issue.. i don't know to do this.. can any one know how this..

While creating twitter accounts all the other information are automated with linking to csv file. After filling the informations , the next window is typing captcha. I need that particular window to wait for some seconds so that i can manually type the captcha..

Is there any way to do with imacro scrips..? and additional lines to be included..?


Thanks in advance .. ;)
 
hey try prompt for capacha.. that would be easy and good for capacha specially
 
hey try prompt for capacha.. that would be easy and good for capacha specially

yep you can get it to make a popup then you input some text into the popup and it throws it into the form, pretty sick!
 
Prompt for captcha means you make the Imacro pause its function indefinitely, and create a new window alerting you of the captcha and asking you to type it. Then resuming, once the captcha is completed.

You'd probably want a conditional statement regarding the "Next" button, since I assume that's the button you'd click after you finished typing the captcha (warning: I know nothing about Imacros, only a semester of C++).
 
You can also use !SINGLESTEP or PAUSE

Code:
SET !SINGLESTEP YES

any lines sandwiched between these two lines of code will pause after every line.

Code:
SET !SINGLESTEP NO

or if you just want to PAUSE for one line simply use

Code:
PAUSE

To resume script you will need to just press the continue button.
 
Last edited:
Thanks,

Let me try this ..
 
Back
Top