eddie114 0 Posted April 9, 2010 I had recently made a code so it would automatically log myself in a website. It had also gotten a captsha recently. I was wondering how i would make a text box that had an input option to where once i entered the captsha and pressed ok then it would enter the code into the necessary input box on the website. I've just been using this ;pop up question $answer = MsgBox(4, "Vote", "Do you want to vote for Bear and Orisci now?" & @LF & "Must have tab 1 open") If $answer = 7 Then Exit EndIf If $answer = 6 Then ;opens molten wow home page shellexecute ("https://www.molten-wow.com/#content-top") sleep (3000) ;clicks on username input MouseClick ( "left" , 214, 595 , 2 , 0 ) send ("user") ;clicks on password input send ("{tab}") send ("pass") ;goes to caption send ("{tab}") EndIf Share this post Link to post Share on other sites
JohnOne 1,603 Posted April 9, 2010 ;pop up question $answer = MsgBox(4, "Vote", "Do you want to vote for Bear and Orisci now?" & @LF & "Must have tab 1 open") If $answer = 7 Then Exit EndIf If $answer = 6 Then ;opens molten wow home page shellexecute ("https://www.molten-wow.com/#content-top") sleep (3000) ;clicks on username input MouseClick ( "left" , 214, 595 , 2 , 0 ) send ("user") ;clicks on password input send ("{tab}") send ("pass") $Capcha = InputBox("Capcha","Enter Capcha") ;goes to caption send ("{tab}") send ("$Capcha") EndIf AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans. Share this post Link to post Share on other sites