Jump to content

tatty

Members
  • Posts

    6
  • Joined

  • Last visited

tatty's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Thay you for your reply, I know that source. But I am newbie for AutoIT, I want to know the script or any AutoIt's command to click ----function startgame()
  2. My link I want to click button "game start", but I have no idea.
  3. I just found what is wrong, now I fix it and program work fine. Anyhow thank you for all suppport
  4. Thank you for your kind anyhow it still don't work. if I login by manual, the password box will see dot (........) then I can login successful. but if I use this code, the password box isn't hiddened, and the website show invalid password even I use the same password as manual login above. please find image below for clearly identified.
  5. I creat script for login to game website, but I cann't login. The site check for hidden text. I want to know how to send the hidden text to password box. below is my script; #include <IE.au3> #Open Internet Explorer and website audition auto $oIE = _IECreate ("about:blank") _IEPropertySet ( $oIE, "Width", "400") _IEPropertySet ( $oIE, "Height", "600") _IENavigate ($oIE, "http://sf.gg.in.th/member/logon_v2.aspx?d=d3a5673aa98ae4d3ec8d1e4cf6f01f13") sleep (5000) ;$oIE = _IEAttach ("http://sf.gg.in.th/member/logon_v2.aspx?d=d3a5673aa98ae4d3ec8d1e4cf6f01f13", "URL") sleep (5000) $oForm1 = _IEFormGetObjByName ($oIE, "form1") $username = "tattygame2" $password = "siriratk" $oQuery = _IEFormElementGetObjByName ($oForm1, "txtLogonX") _IEFormElementSetValue ($oQuery, $username) $oQuery1 = _IEFormElementGetObjByName ($oForm1, "txtPasswordX") _IEFormElementSetValue ($oQuery1, $password) thak you to everybody in advance.
  6. I am newbie for writing program and for AutoIt.(and my English also poor too) I have my own internet cafe in Thailand and I have one bored routine!. Every week, I have to patch all online games in my shop. I want to writing any program to help me automatic click ex. 1st game and patch, after patch finished, then exit and start to patch the 2nd game, and 3rd,... this job is bored because every week I have to patch ~30 games/1 machine, I have 17 machines, it spent a lot of time. some game must log-in in IE before start patch, that is not problem, I try to develop such log-in code and test is OK. now my point is, how to writing some script to check the patch is finished and ready for the next game. What I think is some traffic or port scan program, that can tell me the traffic or activity of port is outed, that means no more patch needed for that game. Can someone give me some sample script that can do similar job?.
×
×
  • Create New...