Left click

nonl33t

Member!
Joined
Mar 12, 2004
Messages
41
Reaction score
0
Location
int the milky way gathering mi
Website
www.geocities.com
hi i need a way to keep left clicking in the same spot i was hoping that some one could help me out and make a small program. also i found this somewhere else on this forum
Code:
ok, first get autoit v3.0
then the coding is simple
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
While 1
send("{F5}")
sleep(3000); in milliseconds 
; so 3 seconds = 3000 and so on
Wend
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
if i changed it to

Code:
ok, first get autoit v3.0
then the coding is simple
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
While 1
send("{left mouse}")
sleep(3000); in milliseconds 
; so 3 seconds = 3000 and so on
Wend
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
would it just click where ever the mouse is pointing?
 

Iliaran

Member!
Joined
Jul 21, 2003
Messages
460
Reaction score
0
Location
...
I don't recognize the programming language you're using...though i think I can easily come up with a program that'll left click for you in visual basic.
 

Crookedfoot

Premium Member
Joined
Aug 6, 2002
Messages
1,077
Reaction score
0
Location
Middle of Nowhere
Website
www.battleforums.com
Is this to click on ads for income, or to keep your comp from going into hybernation?

If it's for ad revenue they will sniff you out and refuse to pay you your honest earnings.

If it's the other, change screen saver and power management settings.
 

Forged

Premium Member
Joined
Nov 28, 2002
Messages
5,433
Reaction score
0
Location
Texas
Website
www.securegamers.com
meh I can't rember the sendkeys function for a left click if there even is one, however if there is one and you know it

Code:
Private Sub Command1_Click()
Timer1.Enabled = True
Timer1.Interval = Text1.Text * 1000
End Sub
Private Sub Form_Load()
Timer1.Enabled = False
End Sub

Private Sub Timer1_Timer()
Timer1.Interval = Text1.Text * 1000
SendKeys "s"
End Sub
Substitute "s" for the key and then compile it.
 

NewPosts

New threads

Top