| Author |
Message |
Topic: Send a command to a background window |
MasterFocus
Replies: 24
Views: 785
|
Forum: Ask for Help Posted: Tue Jun 21, 2011 3:18 pm Subject: Send a command to a background window |
Posted: Tue Jun 21, 2011 9:36 am
Posted: Tue Jun 21, 2011 1:08 pm
bump
Be patient.
Have you tried [url=http://www.autohotkey.com/docs/commands/ControlClick.htm]ControlClick? |
Topic: Map a "hold" key to a "toggle" function |
MasterFocus
Replies: 1
Views: 269
|
Forum: Ask for Help Posted: Tue Jun 21, 2011 3:06 pm Subject: Map a "hold" key to a "toggle" function |
Have you tried SC15D?
Also, next time, please use code tags when posting your code.
AppsKey::
Send, f
KeyWait, AppsKey
Send, f
Return |
Topic: Problem with loop |
MasterFocus
Replies: 2
Views: 94
|
Forum: Ask for Help Posted: Tue Jun 21, 2011 2:47 pm Subject: Problem with loop |
Next time, please use code tags.
1::
Loop
{
ControlSend,,{F1},(Game)
ControlSend,,{%VAR%},(Game)
Sleep, 100
}
Ret ... |
Topic: Is a sound being played? |
MasterFocus
Replies: 4
Views: 179
|
Forum: Ask for Help Posted: Mon Jun 13, 2011 10:21 pm Subject: Is a sound being played? |
This is probably related, but I don't know how to implement it:
http://msdn.microsoft.com/en-us/library/microsoft.xna.framework.audio.dynamicsoundeffectinstance.pendingbuffercount.aspx |
Topic: « What's on your mind? » |
MasterFocus
Replies: 1230
Views: 48250
|
Forum: General Chat Posted: Wed Jun 08, 2011 11:12 pm Subject: « What's on your mind? » |
I've been very busy lately. Haven't checked the forum for a while.  |
Topic: [lib] GPF v1.1c - Overlaying Direct3D games (DX 8+9) (FIXED) |
MasterFocus
Replies: 85
Views: 19749
|
Forum: Scripts & Functions Posted: Wed Jun 08, 2011 10:47 pm Subject: [lib] GPF v1.1c - Overlaying Direct3D games (DX 8+9) (FIXED) |
Is it possible to add it to games that use directx10?
I can't tell, as I never tried. The original DLL documentation doesn't say anything about DX10.
Do I have to press anything?
I don't know you ... |
Topic: Instant any 10 numbers to ###-###-#### |
MasterFocus
Replies: 3
Views: 142
|
Forum: Ask for Help Posted: Fri May 20, 2011 4:08 am Subject: Instant any 10 numbers to ###-###-#### |
| Related: RegEx Powered Dynamic Hotstrings |
Topic: R3gX's collection of functions |
MasterFocus
Replies: 8
Views: 773
|
Forum: Scripts & Functions Posted: Fri May 20, 2011 3:36 am Subject: R3gX's collection of functions |
Since !Type would be fine if "0" was passed, I suppose the following checks are better:
If StrLen(x)<1
If (x="") ; or maybe (x=="")
I did no ... |
Topic: I want an auto X spam Scipt thanks |
MasterFocus
Replies: 6
Views: 378
|
Forum: Ask for Help Posted: Thu May 19, 2011 1:48 am Subject: I want an auto X spam Scipt thanks |
Use these combined:
1) http://www.autohotkey.com/forum/viewtopic.php?t=4986
2) http://www.autohotkey.com/forum/viewtopic.php?t=69474 |
Topic: R3gX's collection of functions |
MasterFocus
Replies: 8
Views: 773
|
Forum: Scripts & Functions Posted: Thu May 19, 2011 1:36 am Subject: R3gX's collection of functions |
R3gX, did you notice the other improvements? Just wondering.
(I'm supposing you only noticed the regex since I colored it...
Sometimes I do read quickly and notice only colored stuff hehe) |
Topic: For future programmers and people interested in Java |
MasterFocus
Replies: 31
Views: 1839
|
Forum: General Chat Posted: Wed May 18, 2011 3:22 pm Subject: For future programmers and people interested in Java |
6. Java is a programming language. AHK is a scripting language. Programming languages are faster because they are compiled, not interpreted.
Java is "also interpreted". http://wiki.answers ... |
Topic: Stupid iTunes... |
MasterFocus
Replies: 17
Views: 896
|
Forum: General Chat Posted: Wed May 18, 2011 3:03 pm Subject: Stupid iTunes... |
So, does anyone know another reliable method to move music to your iPod?
(I know I could Google it... just wanna hear from you guys) |
Topic: R3gX's collection of functions |
MasterFocus
Replies: 8
Views: 773
|
Forum: Scripts & Functions Posted: Tue May 17, 2011 8:42 pm Subject: R3gX's collection of functions |
R3gX, your Is function can be a bit improved.
Is(V,T) {
If !( StrLen(V) & StrLen(T) )
Return
If ( T = "URL" )
Return RegExMa ... |
Topic: cycleWindow() |
MasterFocus
Replies: 23
Views: 3133
|
Forum: Scripts & Functions Posted: Thu May 12, 2011 2:43 am Subject: cycleWindow() |
I'd thought about adding a "include multiple titles"
That should be kind of easily achievable using a proper RegEx.
However, suppose you want to cycle through all your windows except the P ... |
Topic: activating a hotkey depending on seconds pressed? |
MasterFocus
Replies: 4
Views: 180
|
Forum: Ask for Help Posted: Wed May 11, 2011 7:29 pm Subject: activating a hotkey depending on seconds pressed? |
Suggestion: http://www.autohotkey.com/docs/commands/KeyWait.htm
$x::
KeyWait, x, T3
If ErrorLevel
{
MsgBox put your action here
Return
}
Send, {Blind ... |
| |