jackyyll Posted December 6, 2005 Posted December 6, 2005 Whenever i do a control send to this box called "TEdit1" it will type the text in. Then when i hit LOGIN, it always says "The password is incorrect" Is there a reason why the tedit1 box wouldnt recognize the text beeing sent by a controlsend? When i do a "Send("Password")" it doesnt even type the entire password.. Someone please help :/
Valuater Posted December 6, 2005 Posted December 6, 2005 is there special charactors in the password maybe try Send("password", 1) 8)
jackyyll Posted December 6, 2005 Author Posted December 6, 2005 Still doesnt work, this is my script _RunMAM() Func _RunMAM() MouseClick("left", 37, 16, 2) Sleep(2000) MouseClick("left", 185, 211, 1) Sleep(2000) MouseClick("left", 184, 280, 1) Sleep(2000) MouseClick("left", 478, 378, 1) Sleep(200) ControlSend("" , "" , "TEdit1" , "PASSWORD",0) Sleep(1000) MouseClick("left", 461, 451, 1) Sleep(10000) EndFunc I tried the send thing u said and nothing.. Someone plz help :/
Valuater Posted December 6, 2005 Posted December 6, 2005 i dont know the answer but maybe try this.... ControlSend("" , "" , "TEdit1" , "PASSWORD" & CR,0) or ControlSend("" , "" , "TEdit1" , "PASSWORD {ENTER}",0) ???? 8)
jackyyll Posted December 6, 2005 Author Posted December 6, 2005 The first one gives a parsing error, and the second one doesn't work :/
TK_Incorperate Posted December 6, 2005 Posted December 6, 2005 well for one in the first 2 "" things, you need to type the name of the window you're sending too.... example in my old maple looter it was like this ControlSend("MapleStory", "", "", "z") and that worked just fine
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now