| Author |
Message |
Topic: I need link to key names and functions |
Misc
Replies: 1
Views: 54
|
Forum: Ask for Help Posted: Sun Jun 20, 2010 8:10 pm Subject: I need link to key names and functions |
| i found it heres the link just in case you all need it http://www.autohotkey.com/docs/commands/Send.htm |
Topic: I need link to key names and functions |
Misc
Replies: 1
Views: 54
|
Forum: Ask for Help Posted: Sun Jun 20, 2010 8:04 pm Subject: I need link to key names and functions |
| Help out paleez ;] |
Topic: AHK Problem/Game Macro help |
Misc
Replies: 1
Views: 237
|
Forum: Ask for Help Posted: Tue Nov 17, 2009 4:41 pm Subject: AHK Problem/Game Macro help |
How to set a delay for each key Numpad3 Rbutton Lbutton Example: rbutton 3sec later lbutton..
f12::Suspend
~LButton::
Loop
{
Sleep 100
Send, {Numpad3} {RButton} {LButton}
if !GetKeyState(& ... |
Topic: Having trouble with "\" |
Misc
Replies: 2
Views: 235
|
Forum: Ask for Help Posted: Mon Aug 31, 2009 8:31 am Subject: Having trouble with "\" |
| didnt help |
Topic: Macro |
Misc
Replies: 1
Views: 205
|
Forum: Ask for Help Posted: Mon Aug 31, 2009 8:24 am Subject: Macro |
How to combine 2 keys to together so when i press N it presses Insert and L together
N::
Send, {Insert} L
|
Topic: Having trouble with "\" |
Misc
Replies: 2
Views: 235
|
Forum: Ask for Help Posted: Mon Aug 31, 2009 7:48 am Subject: Having trouble with "\" |
Igame to change weapon its the "\" next to "N::SendInput {NumPadDiv}
But when it try it ingame it doesnt work any help? |
Topic: Autofire Number Pad? |
Misc
Replies: 3
Views: 231
|
Forum: Ask for Help Posted: Mon Aug 31, 2009 6:59 am Subject: Autofire Number Pad? |
| No probelm |
Topic: Macro for game |
Misc
Replies: 3
Views: 814
|
Forum: Ask for Help Posted: Sun Aug 30, 2009 7:05 pm Subject: Re: Macro for game |
#NoEnv
SendMode Input
_auto := true
~LButton::autofire()
Numlock::_auto := ! _auto
F1::ExitApp
autofire()
{
global _auto
if _auto
& ... |
Topic: Macro for game |
Misc
Replies: 3
Views: 814
|
Forum: Ask for Help Posted: Sun Aug 30, 2009 5:06 pm Subject: Macro for game |
| Thanx man im going to try this right now |
Topic: Macro for game |
Misc
Replies: 3
Views: 814
|
Forum: Ask for Help Posted: Sun Aug 30, 2009 10:47 am Subject: Macro for game |
#NoEnv
SendMode Input
_auto := true
~LButton::autofire()
Numlock::_auto := ! _auto
F1::ExitApp
autofire()
{
global _auto
if _auto
& ... |
Topic: Macro |
Misc
Replies: 4
Views: 330
|
Forum: Ask for Help Posted: Sat Aug 29, 2009 9:05 pm Subject: Macro |
| Ahh still having the same problems... |
Topic: Macro |
Misc
Replies: 4
Views: 330
|
Forum: Ask for Help Posted: Sat Aug 29, 2009 4:41 pm Subject: Macro |
No recoil for gaming
It works but when i shoot it yanks the mouse across the screen |
Topic: Macro |
Misc
Replies: 4
Views: 330
|
Forum: Ask for Help Posted: Sat Aug 29, 2009 3:52 pm Subject: Macro |
This code i got from a Blogspot but it does nothing can some1 edit this out and correct it
Lbutton::
MouseGetPos, xpos, ypos
Send, Lbutton
Mousemove, %xpos%,%ypos%
return
|
Topic: Autofire Number Pad? |
Misc
Replies: 3
Views: 231
|
Forum: Ask for Help Posted: Sat Aug 29, 2009 3:22 pm Subject: Autofire Number Pad? |
~Numpad3::
Loop
{
Sleep 25
Send, {Numpad3}
if !GetKeyState("Numpad3","P")
break
}
Return
Sleep: The higher the slower the lower the faster |
Topic: Help Please with Mouse movement in-game |
Misc
Replies: 2
Views: 306
|
Forum: Ask for Help Posted: Sat Aug 29, 2009 11:48 am Subject: Help Please with Mouse movement in-game |
I need help with Mouse movement in-game Shooting
How to do a script that makes me change/adjust mouse movement left right up down every time i press Left-Click
Can someone post a simple script f ... |
| |