| Author |
Message |
Topic: Voice Recognition. Works with AutoHotkey! |
Zed Gecko
Replies: 4
Views: 504
|
Forum: Utilities & Resources Posted: Thu Jun 26, 2008 6:05 am Subject: Voice Recognition. Works with AutoHotkey! |
Just as additional info:
GlovePIE has some unusual aspects in the licence agreement:
GlovePIE is Copyright 2007 by Carl Kenner, except for the scripts by other authors. By using this software you ... |
Topic: Windoquarium - a useless distraction |
Zed Gecko
Replies: 4
Views: 240
|
Forum: Scripts & Functions Posted: Thu Jun 19, 2008 10:55 pm Subject: Windoquarium - a useless distraction |
glad you like it
I made some minor corrections in the code above. |
Topic: Windoquarium - a useless distraction |
Zed Gecko
Replies: 4
Views: 240
|
Forum: Scripts & Functions Posted: Thu Jun 19, 2008 9:16 pm Subject: Windoquarium - a useless distraction |
Inspired by Rajats aquarium, I have made a little toy/ game/screensaver/something, the Windoquarium.
Small Windows "EGGS" drift around and sometimes become bigger Windows,
those drift ar ... |
Topic: not registering mouse clicks |
Zed Gecko
Replies: 41
Views: 652
|
Forum: Ask for Help Posted: Sun Jun 01, 2008 8:48 am Subject: not registering mouse clicks |
Please be more specific!
What doesnīt work?
Does it not click? Not double-click? Not click in the right spot?
What have you tried? (specific please: Modes, Timings)
And what game are you testin ... |
Topic: 4 Game Automation: FUNCTIONS(e.g. random click) and TOOLS |
Zed Gecko
Replies: 9
Views: 1866
|
Forum: Scripts & Functions Posted: Sun Jun 01, 2008 8:27 am Subject: Script to quickly test different SendModes and KeyDelays |
This is a Script to quickly test different SendModes and KeyDelays with your own mouse-clicking and key-pressing hotkey or subroutine.
If you were ever pointed to this link:
; SendMode/KeyDelay T ... |
Topic: not registering mouse clicks |
Zed Gecko
Replies: 41
Views: 652
|
Forum: Ask for Help Posted: Sun Jun 01, 2008 4:57 am Subject: not registering mouse clicks |
what do you mean with "when i have my documents open"?
Do you know how to create and launch a script?
http://www.autohotkey.com/docs/Tutorial.htm#Create |
Topic: not registering mouse clicks |
Zed Gecko
Replies: 41
Views: 652
|
Forum: Ask for Help Posted: Sun Jun 01, 2008 4:31 am Subject: not registering mouse clicks |
his is what i have so far..
this is actually a working script, so you could run it directly.
but you are probably better off, wrapping it in a hotkey.
for example, like this:
^!t:: ... |
Topic: Run command, but with parameters |
Zed Gecko
Replies: 1
Views: 69
|
Forum: Ask for Help Posted: Sun Jun 01, 2008 4:23 am Subject: Run command, but with parameters |
yes you can.
please check the manual!
http://www.autohotkey.com/docs/commands/Run.htm |
Topic: Infinite Loopy |
Zed Gecko
Replies: 2
Views: 87
|
Forum: Ask for Help Posted: Sun Jun 01, 2008 1:27 am Subject: Infinite Loopy |
| ~J::Mouseclick,left |
Topic: [Control] "_diagramm_" a Chart-function by denick |
Zed Gecko
Replies: 3
Views: 867
|
Forum: Scripts & Functions Posted: Sun Jun 01, 2008 1:10 am Subject: [Control] "_diagramm_" a Chart-function by denick |
denick aka. nick has created a very handy GDI-chart/plotter-function in the german forum:
; ==============================================================================
; __Diagramm__()
... |
Topic: IniRead Issue |
Zed Gecko
Replies: 2
Views: 120
|
Forum: Ask for Help Posted: Sat May 31, 2008 11:38 pm Subject: IniRead Issue |
Itīs not an IniRead issue, itīs an if (code := "ERROR") ;no load code
should be
if (code = "ERROR") ;load code |
Topic: 4 Game Automation: FUNCTIONS(e.g. random click) and TOOLS |
Zed Gecko
Replies: 9
Views: 1866
|
Forum: Scripts & Functions Posted: Sat May 31, 2008 10:12 pm Subject: Simple Click-Recorder |
I made a little Click-Recorder,
it records Left/Middle/Right-MouseClicks and displays them as an ahk-script, so you can include them in your scripts.
The functionality is limited:
you can record Mo ... |
Topic: How to create a Loop Bypass Timer? |
Zed Gecko
Replies: 14
Views: 459
|
Forum: Ask for Help Posted: Thu May 29, 2008 8:55 am Subject: How to create a Loop Bypass Timer? |
and as one-liner
w::send, % (!t1 || A_TickCount-t1 > 60000) ? ((t1 := A_TickCount) ? 1 : 1) : 2 |
Topic: How to create a Loop Bypass Timer? |
Zed Gecko
Replies: 14
Views: 459
|
Forum: Ask for Help Posted: Thu May 29, 2008 8:43 am Subject: How to create a Loop Bypass Timer? |
even shorter
w::
send, % (!t1 || A_TickCount-t1 > 60000) ? 1 : 2
t1 := (!t1 || A_TickCount-t1 > 60000) ? A_TickCount : t1
return |
Topic: Problem with Gui Edit |
Zed Gecko
Replies: 11
Views: 255
|
Forum: Ask for Help Posted: Thu May 29, 2008 7:26 am Subject: Problem with Gui Edit |
| And just because of your guest-account issue. |
| |