Need Help !

Discussion in 'Code Snippets and Tutorials' started by pandahorde, Mar 16, 2007.

  1. pandahorde

    pandahorde Level IV

    Joined:
    Dec 17, 2006
    Messages:
    2,249
    Likes Received:
    17
    Location:
    "MANILA ZOO"
    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
     
  2. the_skip

    the_skip Level IV

    Joined:
    Dec 25, 2006
    Messages:
    2,354
    Likes Received:
    1
    Location:
    Indiana
    use this

    Code (Text):
    1. ///goes to login page
    2. openwebpage('http://www.neopets.com/login/')
    3. clickmouse(224,319,true)
    4. wait (100)
    5. ///tabs to username box
    6. keydown(9)
    7. keyup(9)
    8. wait (100)
    9. //enters username
    10. sendkeys(edit1.text)////or whatever the username text box is
    11. ///tabs to enter
    12. keydown(9)
    13. keyup(9)
    14. wait (100)
    15. //presses enter to send the info
    16. keydown(13)
    17. keyup(13)
    18. ///enter username now password
    19. wait(1000)
    20. clickmouse(224,319,true)
    21. wait (100)
    22. //tabs to password box
    23. keydown(9)
    24. keyup(9)
    25. ///enters password
    26. sendkeys(edit2.text)///or whatever the password box is calles
    27. ///tabs to submit
    28. keydown(9)
    29. keyup(9)
    30. wait (100)
    31. ///enters submit
    32. keydown(13)
    33. keyup(13)
    34. wait(100)
    35.  
    36. wait (100)
    This should be good
     
  3. pandahorde

    pandahorde Level IV

    Joined:
    Dec 17, 2006
    Messages:
    2,249
    Likes Received:
    17
    Location:
    "MANILA ZOO"
    ok.. im trying it .and thank you very much .