| Author |
Message |
Topic: need help with autofire script |
Michael@oz
Replies: 5
Views: 62
|
Forum: Ask for Help Posted: Sun Mar 14, 2010 5:42 am Subject: need help with autofire script |
I don't know why it doesn't work, works OK on my XP PC.
Could try$~Numpad5::
Loop
{
Sleep 100
Send, {Numpad5}
if !GetKeyState("Numpad5","P")
... |
Topic: need help with autofire script |
Michael@oz
Replies: 5
Views: 62
|
Forum: Ask for Help Posted: Sun Mar 14, 2010 4:40 am Subject: need help with autofire script |
| Try$~Numpad5:: |
Topic: Hopefully Gamers can use this for simple key scripts |
Michael@oz
Replies: 0
Views: 276
|
Forum: Scripts & Functions Posted: Sat Mar 13, 2010 8:04 am Subject: Hopefully Gamers can use this for simple key scripts |
; SpamSpamSpam - Easy Script Creator for beginer ahk gamers. Public Domain, free to use anyway you want.
#SingleInstance force
#NoEnv
Gosub Spam_Init
; Don't change the above unless you know what ... |
Topic: [Fixed - thanks] Loop, Parse - looping one too many times? |
Michael@oz
Replies: 13
Views: 267
|
Forum: Ask for Help Posted: Fri Mar 12, 2010 4:09 pm Subject: [Fixed - thanks] Loop, Parse - looping one too many times? |
My perspective is,
While (IsThereA_BuiltInThingToDoSomething)
UseIt
Hence my refined code
SI_String:=substr(SI_String,2,-1) ; remove extra delimiters
; parse with } ... |
Topic: [Fixed - thanks] Loop, Parse - looping one too many times? |
Michael@oz
Replies: 13
Views: 267
|
Forum: Ask for Help Posted: Fri Mar 12, 2010 9:56 am Subject: [Fixed - thanks] Loop, Parse - looping one too many times? |
To finish this off, this is what I ended up with; replace }{ with a single char delimiter
StringReplace, SI_String, SI_String,}{,‡,All
; get rid of whitespace,{,},plu ... |
Topic: [Fixed - thanks] Loop, Parse - looping one too many times? |
Michael@oz
Replies: 13
Views: 267
|
Forum: Ask for Help Posted: Fri Mar 12, 2010 9:41 am Subject: [Fixed - thanks] Loop, Parse - looping one too many times? |
OK,I admit it, it was me, my misunderstanding, not a bug.  |
Topic: [Fixed - thanks] Loop, Parse - looping one too many times? |
Michael@oz
Replies: 13
Views: 267
|
Forum: Ask for Help Posted: Fri Mar 12, 2010 7:41 am Subject: [Fixed] Loop, Parse - looping one too many times? |
Thanks everyone, if others have come across this should it be reported as a bug?
And just for my own curiosity, why is there a function parameter that doesn't do anything?
I came across this situa ... |
Topic: [Fixed - thanks] Loop, Parse - looping one too many times? |
Michael@oz
Replies: 13
Views: 267
|
Forum: Ask for Help Posted: Fri Mar 12, 2010 6:09 am Subject: [Fixed - thanks] Loop, Parse - looping one too many times? |
Can anyone see why the following shows 4 lines of output for three fields in the test data? The fourth line has a blank A_LoopField
Test(SI_HotK, SI_String)
{
Loop, Parse, SI_String ... |
Topic: Context Menu not showing |
Michael@oz
Replies: 4
Views: 118
|
Forum: Ask for Help Posted: Wed Mar 10, 2010 11:46 pm Subject: Context Menu not showing |
| From OnMessage() Help If this is undesirable, a message greater than or equal to 0x312 can be buffered until its function completes by specifying Critical as the first line of the function. Alternativ ... |
Topic: Script suddenly not working in Win7 |
Michael@oz
Replies: 1
Views: 44
|
Forum: Ask for Help Posted: Wed Mar 10, 2010 8:22 am Subject: Script suddenly not working in Win7 |
| Do a search on Window 7, there are some posts that say how ahk needs to be run in W7. |
Topic: Context Menu not showing |
Michael@oz
Replies: 4
Views: 118
|
Forum: Ask for Help Posted: Wed Mar 10, 2010 8:19 am Subject: Context Menu not showing |
I presume you mean this loop?Loop
{
GoSub, TXT1
Sleep, 5000
}You could use a SetTimer insteadSetTimer TXT1, 5000Also try #MaxThreads 10Although the help says defaults to ten, I ... |
Topic: Tips N Tricks |
Michael@oz
Replies: 399
Views: 188426
|
Forum: Scripts & Functions Posted: Tue Mar 09, 2010 5:12 am Subject: Tips N Tricks |
How to Refresh " Icons Display " in System Tray ?
http://www.autohotkey.com/forum/viewtopic.php?p=55641#55641
See [url=http://www.autohotkey.com/forum/viewtopic.php?p=338201#338201]Tray ... |
Topic: Extract Informations about TrayIcons |
Michael@oz
Replies: 83
Views: 21873
|
Forum: Scripts & Functions Posted: Tue Mar 09, 2010 5:08 am Subject: Extract Informations about TrayIcons |
EDIT: Having some icons disappear.
EDIT: Not anymore I think it was Winspector &/or Window Spy.
Modification to allow abandoned tray icons tray icons to be cleaned-up.
Plus a new way to ge ... |
Topic: Replacement for Winspector? [Fixed - thanks] |
Michael@oz
Replies: 2
Views: 112
|
Forum: Ask for Help Posted: Thu Mar 04, 2010 6:54 am Subject: Replacement for Winspector? [Fixed - thanks] |
Send Messages to a Window or Its Controls
by Rajat
This page discusses the PostMessage and SendMessage commands
...
Requirements: AutoHotkey v1.0.09+ and Winspector Spy (www.windows-spy.com)
W ... |
Topic: There is a solution to write scripts for FireFox |
Michael@oz
Replies: 73
Views: 3321
|
Forum: Ask for Help Posted: Fri Feb 26, 2010 11:08 pm Subject: There is a solution to write scripts for FireFox |
I'm just trying to get versourc() working
rc := versourc("Google - Mozilla Firefox")
Get "??? * Error ClipWait in function sdom" error
I even tried 20s in sdom( ... |
| |