| Author |
Message |
Topic: Not another autoclicker?!? |
David
Replies: 0
Views: 2085
|
Forum: Scripts & Functions Posted: Sat Dec 15, 2007 1:30 am Subject: Not another autoclicker?!? |
Nothing fancy here, just wanted to share something simple I wrote for my own use, to keep the callous on my index finger from getting any bigger.
; AutoMouseClick.ahk
; Automatically clicks (dou ... |
Topic: Generating unique random integers |
David
Replies: 75
Views: 9588
|
Forum: Scripts & Functions Posted: Thu Nov 23, 2006 1:28 am Subject: Generating unique random integers |
| In your second point, you are correct -- a large array is required to hold a large candidate pool although with RAM sizes today, this may or not be an issue. The uniqueness of r isn't an issue since e ... |
Topic: Generating unique random integers |
David
Replies: 75
Views: 9588
|
Forum: Scripts & Functions Posted: Sat Nov 18, 2006 10:54 pm Subject: Generating unique random integers |
| Great discussion of the sample-with-replacement problem. To sample without replacement, which eliminates the issue of duplicates: Fill an n-element array with candidates (e.g., x(i)=i for i=1..n) and ... |
Topic: Removing 320MPH shell integration |
David
Replies: 2
Views: 233
|
Forum: Ask for Help Posted: Thu Aug 10, 2006 3:01 am Subject: Removing 320MPH shell integration |
| I've deleted the .EXE, .AHK, and .INI files but "320MPH" remains in my right-click menus. How do I remove them? |
Topic: Open non-clickable URL in Firefox |
David
Replies: 4
Views: 1868
|
Forum: Scripts & Functions Posted: Sat May 06, 2006 3:28 pm Subject: Open non-clickable URL in Firefox |
| Once in a while a Web page will display a URL in plain text. To open it you have to retype it or copy-and-paste to the address bar. With this hotkey, highlight the URL, press Win-O. and it opens in a ... |
Topic: Multi-Window Browser |
David
Replies: 2
Views: 946
|
Forum: Scripts & Functions Posted: Wed Mar 22, 2006 3:32 pm Subject: Example |
| Forgot to post an example: http://members.cox.net/david193/mwb.htm |
Topic: Multi-Window Browser |
David
Replies: 2
Views: 946
|
Forum: Scripts & Functions Posted: Tue Mar 21, 2006 4:03 am Subject: Multi-Window Browser |
| A short program that creates and runs an HTM file displaying your favorite sites, with each site in a separate full-window iframe. Your sites are found in mwb.dat, one line per site, with each line co ... |
Topic: Favorite Folders popup menu that you can change on the fly. |
David
Replies: 4
Views: 8864
|
Forum: Scripts & Functions Posted: Sun Nov 28, 2004 6:30 pm Subject: Favorite Folders popup menu that you can change on the fly. |
| sleepyy35, you'll need to remove the CR/LFs caused by the BBS's word wrap. For example, this command, displayed on three lines, should be on one line: FileAppend, # You can hand edit this file if ... |
Topic: Loop until button pressed? |
David
Replies: 1
Views: 295
|
Forum: Ask for Help Posted: Sun Nov 28, 2004 6:21 pm Subject: Loop until button pressed? |
| Although I've never tried it, there's a technique described in the [url=http://www.autohotkey.com/docs/FAQ.htm]FAQ that might apply: "How can a repeating action be stopped without exiting the script?" ... |
Topic: WinMove |
David
Replies: 4
Views: 601
|
Forum: Ask for Help Posted: Fri Oct 08, 2004 11:31 pm Subject: WinMove |
This code should open four Explorer windows, each pointing to C:\, and tile them. What it does is open one window and move it around the screen.
However, if each of the Run, explorer.exe statements ... |
Topic: Newbie question |
David
Replies: 7
Views: 615
|
Forum: Ask for Help Posted: Fri Sep 24, 2004 5:14 pm Subject: Newbie question |
| Want elegance, huh? :) I'd take a look at [url=http://www.autohotkey.com/docs/commands/LoopParse.htm]Loop, parse, clipboard. |
Topic: Newbie question |
David
Replies: 7
Views: 615
|
Forum: Ask for Help Posted: Fri Sep 24, 2004 4:33 pm Subject: Newbie question |
Maybe something like this (in pseudo-AHK code)?
1. Open Notepad
2. Paste (Ctrl-V)
3. Go to top (Ctrl-Home)
4. Shift-Down-Down (to select the first two lines)
5. Del
6. Select all (Ctrl-A)
7. ... |
Topic: Gmail invitation |
David
Replies: 29
Views: 3895
|
Forum: General Chat Posted: Fri Sep 10, 2004 2:43 am Subject: Gmail invitation |
| I have an extra [url=http://www.google.com/gmail/help/start.html]Gmail invitation that anyone who wants it can have. |
Topic: Progress bar example |
David
Replies: 0
Views: 1271
|
Forum: Scripts & Functions Posted: Thu Sep 09, 2004 10:11 pm Subject: Progress bar example |
| I hadn't seen many examples of the Progress command so I worked through a silly example in case I need to use Progress in the future. All this example does is display the names of all the files in the ... |
Topic: SetKeyDelay+ |
David
Replies: 1
Views: 325
|
Forum: Ask for Help Posted: Mon Sep 06, 2004 9:12 pm Subject: SetKeyDelay+ |
This hotkey displays the age of the current Web page. Can anyone give me a clue as to why this code stops working if the SetKeyDelay command is uncommented?
+^d:: ;SetKeyDelay, -1
... |
| |