| Author |
Message |
Topic: <gg> Control key |
jps
Replies: 6
Views: 333
|
Forum: Ask for Help Posted: Sun Jul 01, 2007 5:39 am Subject: <gg> Control key |
F1::Send, {Ctrl Down}
*F2::Send, {Ctrl up}
* Wildcard: Fire the hotkey even if extra modifiers are being held down |
Topic: Disable and then re-enable on keypress |
jps
Replies: 7
Views: 331
|
Forum: Ask for Help Posted: Sun Jul 01, 2007 5:09 am Subject: Disable and then re-enable on keypress |
a::MsgBox, a
b::MsgBox, b
c::MsgBox, c
~t::Gosub, BindsOff
~Enter::Gosub, BindsOn
~F6::
If BindState = Off
Gosub, BindsOn
Else
Gosu ... |
Topic: how to simulate keystrokes? |
jps
Replies: 2
Views: 165
|
Forum: Ask for Help Posted: Wed Jun 27, 2007 5:16 pm Subject: how to simulate keystrokes? |
[url=http://www.autohotkey.com/docs/commands/Send.htm]Send
If you want a more specific answer you will have to ask a more specific question. |
Topic: Continual Keystrokes |
jps
Replies: 7
Views: 322
|
Forum: Ask for Help Posted: Fri Jun 22, 2007 4:00 pm Subject: Continual Keystrokes |
Strange.Dunno what that is.
As a workaround you could bind a second key to jump in the game.
Put this in your console or autoexec.cfg.It'll bind both space and F12 to jump
bind F12 +jump; bin ... |
Topic: Continual Keystrokes |
jps
Replies: 7
Views: 322
|
Forum: Ask for Help Posted: Fri Jun 22, 2007 1:26 pm Subject: Continual Keystrokes |
Very similar to what I was looking for in my very first post here.Is it to help with bunny hopping by any chance?If it is you might want to add some sleep commands
Shift::Suspend
~$Space ... |
Topic: AutoHotkey Wiki |
jps
Replies: 18
Views: 2020
|
Forum: General Chat Posted: Wed Jun 20, 2007 4:52 am Subject: AutoHotkey Wiki |
I just had a thought.
How about a section for undocumented behaviour?
When something is discovered and is deemed too obscure or would bloat the manual or whatever it could be added to that secti ... |
Topic: Variable within a variable. How should it be done? |
jps
Replies: 7
Views: 308
|
Forum: Ask for Help Posted: Sun Jun 17, 2007 7:12 pm Subject: Variable within a variable. How should it be done? |
| MsgBox, % Key%KeyNum% |
Topic: Loop Scripring |
jps
Replies: 3
Views: 210
|
Forum: Ask for Help Posted: Sun Jun 17, 2007 7:06 pm Subject: Loop Scripring |
F2::ExitApp ; Press F2 to terminate the script
F1:: ; press F1 to start the loop
Loop, 10 ; remove the number for an infinate loop
{
Send, {CTRLDOWN}{S ... |
Topic: BF2 MACROS (SUMMARY) - post all working macros here please |
jps
Replies: 1799
Views: 316429
|
Forum: Scripts & Functions Posted: Sun Jun 17, 2007 3:55 pm Subject: Re: get a clue |
losers.. whats the point of it? you are using macroscript for gaining advantage over others..its called CHEATING..
i hope all of you get banned.. saw enough trouble with guys l ... |
Topic: launch a hotkey manytimes even when it's action isn't finish |
jps
Replies: 6
Views: 212
|
Forum: Ask for Help Posted: Thu Jun 14, 2007 2:52 am Subject: launch a hotkey manytimes even when it's action isn't finish |
#MaxThreadsPerHotkey, 10
!a::
SoundPlay, 30.wav
sleep 25000
SoundPlay, 5.wav
sleep 1000
SoundPlay, 4.wav
sleep 1000
SoundPlay, 3.wav
sleep 1000
SoundPlay, 2.wav
sleep 1000
SoundP ... |
Topic: Strange behaviour with shift as a modifier |
jps
Replies: 4
Views: 196
|
Forum: Ask for Help Posted: Tue Jun 12, 2007 1:32 pm Subject: Strange behaviour with shift as a modifier |
| Yeah its kinda wierd.It only seems to do it with wheeldown |
Topic: Strange behaviour with shift as a modifier |
jps
Replies: 4
Views: 196
|
Forum: Ask for Help Posted: Tue Jun 12, 2007 10:00 am Subject: Strange behaviour with shift as a modifier |
Is this a bug,am I overlooking something or is my ahk playing up?
WheelUp::1
WheelDown::2
+WheelUp::a
+WheelDown::b
+WheelDown sends B but +WheelUp sends ! |
Topic: Mousewheel help |
jps
Replies: 3
Views: 245
|
Forum: Ask for Help Posted: Tue Jun 12, 2007 9:55 am Subject: Mousewheel help |
You can use the shift key as a modifier without losing its native functionality so you dont need to use getkeystate.
WheelUp::1
WheelDown::2
+WheelUp::send, A
+WheelDown ... |
Topic: Confused newbie (trying to make a simple macro) |
jps
Replies: 2
Views: 208
|
Forum: Ask for Help Posted: Mon Jun 11, 2007 12:02 pm Subject: Confused newbie (trying to make a simple macro) |
| + and ^ after a send command will send the actual characters.They are only used as modifiers when within hotkey definitions.Also the word 'left' without curly braces will send the word rather than the ... |
Topic: Sending to clipboard |
jps
Replies: 3
Views: 231
|
Forum: Ask for Help Posted: Sun Jun 10, 2007 1:58 pm Subject: Sending to clipboard |
There is a built in variable called Clipboard that contains the contents of the clipboard.To put something in the clipboard just treat it like any other variable.
eg
Clipboard = 1234
will put 1 ... |
| |