can some help me.. i already read the tutorials to make Form ,boxes to log-in . and when i run the program. the boxes appear and says log-in: password: (box says start!) it works -and i wonder how can make script that when you type your user and pas it will log-in to neopets.com
use this Code (Text): ///goes to login page openwebpage('http://www.neopets.com/login/') clickmouse(224,319,true) wait (100) ///tabs to username box keydown(9) keyup(9) wait (100) //enters username sendkeys(edit1.text)////or whatever the username text box is ///tabs to enter keydown(9) keyup(9) wait (100) //presses enter to send the info keydown(13) keyup(13) ///enter username now password wait(1000) clickmouse(224,319,true) wait (100) //tabs to password box keydown(9) keyup(9) ///enters password sendkeys(edit2.text)///or whatever the password box is calles ///tabs to submit keydown(9) keyup(9) wait (100) ///enters submit keydown(13) keyup(13) wait(100) wait (100) This should be good