Make a program which clicks on a certain place after a specified time

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • JohnIsCrazy
    New Member
    • Oct 2005
    • 1

    Make a program which clicks on a certain place after a specified time

    ok i'm interested in "scripting" if i'm wrong but i think is would be considered scripting i want to make a program that inside your browser will click on a certain place and i set that place and have a timer on when to press it how would i be able to make somthing like this? greatly appreciated and no its not for cheating on a game or somthing it's for testing an application i'm beta testing for my friend. thx all
  • Niheel
    Recognized Expert Moderator Top Contributor
    • Jul 2005
    • 2432

    #2
    Using javascript will be your best bet. There are some great resources out on the web. The best would be to start out with basic introduction tutorials then move to advanced ones.
    niheel @ bytes

    Comment

    • acoder
      Recognized Expert MVP
      • Nov 2006
      • 16032

      #3
      If it's a button, use the click() method. For timing, use setTimeout/setInterval.

      Comment

      • rnd me
        Recognized Expert Contributor
        • Jun 2007
        • 427

        #4
        you can't directly simulate a click at a certain point, but you can call a tag's onclick event. you could use getElementByPoi nt to find the tag to fire the event on.

        Comment

        Working...