| Author |
Message |
Topic: Simple "rapid-fire printscreen" |
Lurker1457
Replies: 3
Views: 504
|
Forum: Scripts & Functions Posted: Sun Mar 16, 2008 12:15 am Subject: Simple "rapid-fire printscreen" |
Yes, one of the mods will eventually dumbo-drop this thread back into its native habitat in the "Ask for help" rain forests.
Incidently, the reason your files are empty is because you do ... |
Topic: [remap key] "CTRL+SHIFT+P" to "P" ONLY |
Lurker1457
Replies: 7
Views: 207
|
Forum: Ask for Help Posted: Sun Mar 16, 2008 12:03 am Subject: [remap key] "CTRL+SHIFT+P" to "P" ONLY |
maybe:<^<+p::
Keywait, Ctrl
KeyWait, Shift
Send, p
SoundBeep, 522, 50 ; remove this if you ever hear it...
return |
Topic: Trying to undertsnad Random |
Lurker1457
Replies: 6
Views: 183
|
Forum: Ask for Help Posted: Sun Mar 16, 2008 12:00 am Subject: Trying to undertsnad Random |
If you prefer it the function way...WinActivate, Paint
MouseClick,left, % (500 + random(50)), % (500 + random(50))
Sleep, 3000
MouseClick,left, % (500 + rando ... |
Topic: BF2 QuickSwitch - Battlefield 2 Macros |
Lurker1457
Replies: 213
Views: 16508
|
Forum: Scripts & Functions Posted: Sat Mar 15, 2008 9:48 am Subject: BF2 QuickSwitch - Battlefield 2 Macros |
| why would anyone bother downloading an executable?... AHK is all about open source, dude. |
Topic: New, needing a Middle mouse emulator |
Lurker1457
Replies: 3
Views: 122
|
Forum: Ask for Help Posted: Sat Mar 15, 2008 5:05 am Subject: New, needing a Middle mouse emulator |
I do a bunch of stuff in Cinema 4D and I use AHK to save myself from keycombo headaches...,:: SendPlay {blind}{LAlt down}{MButton Down}
, Up:: SendPlay & ... |
Topic: m4# 1337 804rd |
Lurker1457
Replies: 9
Views: 468
|
Forum: Scripts & Functions Posted: Sat Mar 15, 2008 2:46 am Subject: m4# 1337 804rd |
`/0L| f()|2907:r:: send |2
x:: send ><
k:: send |<
v:: send \/
n:: send |\|
m:: send (V)
w:: send \^/
y:: send ` ... |
Topic: Round-Off to nearest 0.05 in a ClassNN Edit |
Lurker1457
Replies: 26
Views: 761
|
Forum: Ask for Help Posted: Fri Mar 14, 2008 6:47 pm Subject: Round-Off to nearest 0.05 in a ClassNN Edit |
| I'm pretty sure my script would deliver in that respect, since it uses controlsettext after the conditional If (numb). It should discriminate non-numerical values instead of sending them to the edit b ... |
Topic: Make a Trainer |
Lurker1457
Replies: 7
Views: 212
|
Forum: Ask for Help Posted: Fri Mar 14, 2008 6:51 am Subject: Make a Trainer |
| [Hotkey]:: Send [KeyToOpenDevConsole][YourCheatCode]{enter}[KeyToCloseDevConsole] |
Topic: USB Joystick help |
Lurker1457
Replies: 2
Views: 91
|
Forum: Ask for Help Posted: Fri Mar 14, 2008 3:45 am Subject: USB Joystick help |
SetTimer, PollJoyPOV, 10
PollJoyPOV:
joypov := ( 4500 + GetKeyState("JoyPOV", "p") ) // 4500
Tooltip POV = %joypov%
return
esc::exitapp
Mayb ... |
Topic: Read line after A_LoopReadLine |
Lurker1457
Replies: 5
Views: 194
|
Forum: Ask for Help Posted: Wed Mar 12, 2008 7:35 am Subject: Read line after A_LoopReadLine |
AFAIK, there is no mechanism to force a file read loop or a parsing loop to take the next line (aside from 'waiting' until the next iteration).
Is there a problem with storing the current line in a ... |
Topic: Round-Off to nearest 0.05 in a ClassNN Edit |
Lurker1457
Replies: 26
Views: 761
|
Forum: Ask for Help Posted: Tue Mar 11, 2008 8:22 pm Subject: Round-Off to nearest 0.05 in a ClassNN Edit |
#IfWinActive YOURWINDOWTITLE
$Enter::
$NumpadEnter::
ControlGetText, numb, Edit3, A
SetFormat, Float, 0.0
numb := (numb*20)
SetFormat, Float, 0.2
numb /= 20.0
If ... |
| |