Posts: 4
Threads: 1
Joined: Nov 2006
I was wondering if anyone could help me make this macro and get it turned into a simple .exe. All I want is to be able to hold down the 0 on the Numpad(N0), and have it simply spam 0 until I let it go, or if that is impossible, when I hit 0 have it spam the Numpad0(N0) 3 or 4 times. Please help someone I've gotten this so far but I don't think its right...
rep 100000
,ifk(N0)
,,end
,0.00001
[/code]
Posts: 4
Threads: 1
Joined: Nov 2006
Can anyone please help me with this, I know it cant be that difficult to get Numpad0 to spam its self or make an exe for Numpad0 to spam something like F8 or Q or something about 3 or 4 times or to continue to spam until releasing the key.
Posts: 4
Threads: 1
Joined: Nov 2006
Bump I know this isn't hard at all to make could anyone just help me?
Posts: 12,073
Threads: 140
Joined: Dec 2002
Use different key for trigger. If macro repeatedly presses N0, the trigger can be eg N1.
Example:
Trigger: N1
spe 1
rep 100000
,key N0
,ifk-(N1) break
Posts: 4
Threads: 1
Joined: Nov 2006
ifk-(N0)
spe 1
rep 100000
,key q
break
Lets say thats my code(is it correct), I want to hold down Numpad 0 and have it spam Q repeatedly as fast as possible until I let it go. If my code is correct how do I compile it to a .exe
Posts: 12,073
Threads: 140
Joined: Dec 2002
My example uses keyboard trigger. In exe, triggers cannot be used, so it will not work.