| Author |
Message |
Topic: WGET for Windows |
Lemming
Replies: 1
Views: 1221
|
Forum: Utilities & Resources Posted: Sat Nov 06, 2010 9:56 am Subject: WGET for Windows |
| This is a well known utility in Unix, and it's now available for Windows. I've been testing it since yesterday and can confirm that it works well with AHK. It has more options, and is more robust than ... |
Topic: Getting data from Excel |
Lemming
Replies: 54
Views: 3532
|
Forum: Ask for Help Posted: Sun Aug 08, 2010 12:51 pm Subject: XLS2CSV |
Try XLS2CSV:
http://www.brothersoft.com/xls2csv-69870.html
Does exactly as its name says. Small, fast and free. You don't even need to have Excel installed.
Once data is in CSV format, it is ... |
Topic: GNU utilities for Win32 |
Lemming
Replies: 0
Views: 947
|
Forum: Utilities & Resources Posted: Fri Jul 30, 2010 2:59 pm Subject: GNU utilities for Win32 |
GNU utilities for Win32
http://unxutils.sourceforge.net/
"Here are some ports of common GNU utilities to native Win32. In this context, native means the executables only depend on the Micro ... |
Topic: PixelSearch ? |
Lemming
Replies: 6
Views: 445
|
Forum: Ask for Help Posted: Wed Jul 28, 2010 2:26 pm Subject: Re: PixelSearch ? |
It sure does. Heck, I used to have Ahk scripts for WoW and EQ2 running in full screen. Just assign the task to a hotkey in your script, and launch it before the game.
Some general Ahk tips for game ... |
Topic: Critique of my coding? |
Lemming
Replies: 1
Views: 334
|
Forum: Ask for Help Posted: Sat Mar 27, 2010 10:20 am Subject: Try A_TimeIdle |
There's already a built-in variable for detecting idleness:
A_TimeIdle - The number of milliseconds that have elapsed since the system last received keyboard, mouse, or other input. This is useful ... |
Topic: folder background color |
Lemming
Replies: 3
Views: 316
|
Forum: Ask for Help Posted: Sat Mar 27, 2010 9:49 am Subject: Needs separate app |
For Win XP, you'll need on old util from Win 98:
http://windowsxp.mvps.org/Customize_folder.htm
The util does not work in Vista. |
Topic: keeping only parts of a document...? |
Lemming
Replies: 10
Views: 326
|
Forum: Ask for Help Posted: Tue Feb 02, 2010 5:49 pm Subject: simplified version |
I've simplified sinkfaze's script and added the actual "make dir" code. Plus, this version will handle any number of matches, not just 3.
A few notes:
- This script creates folders in th ... |
Topic: Progress bar |
Lemming
Replies: 5
Views: 571
|
Forum: Ask for Help Posted: Sat Jan 30, 2010 4:37 pm Subject: Try Progress command |
There's also the LoopCount = 6 ; Any integer value that is more than 1
LoopMultiplier := 100 / LoopCount ; for divvying up the count
MainText := "Press any key to continue"
... |
Topic: How do I create a hotkey using 3 keys? |
Lemming
Replies: 6
Views: 518
|
Forum: Ask for Help Posted: Thu Jul 30, 2009 8:13 am Subject: It's a variation of start-stop hotkey |
I initially thought this was a trivial problem, but later realised it wasn't so straightforward.
It is actually a variation of the "stop repeating action without exiting the script" probl ... |
Topic: Post Message in Browser, clicking problem |
Lemming
Replies: 4
Views: 478
|
Forum: Ask for Help Posted: Sat May 02, 2009 5:30 am Subject: overkill |
| Engunner's right; postmessage is overkill for this task. For IE, I normally use a combo of Winactivate, ControlFocus, and Click. The classNN for the main IE window is usually Internet Explorer_Server1 ... |
Topic: another imagesearch request for help |
Lemming
Replies: 6
Views: 1082
|
Forum: Ask for Help Posted: Fri Sep 26, 2008 3:05 am Subject: ImageSearch tips |
A few tips for ImageSearch:
a) Limit the search area.
b) Use smaller images for the search
c) Implement backup search(es)
d) Try not to use ImageSearch
Point a) you probably know already. Poi ... |
Topic: another imagesearch request for help |
Lemming
Replies: 6
Views: 1082
|
Forum: Ask for Help Posted: Wed Sep 24, 2008 3:04 am Subject: Unclear what you're asking |
Not sure what you're getting at, or what problem you're trying to solve. Perhaps you could mention the actual app you're working with? Also, being sarky doesn't help.
ImageSearch has worked very we ... |
Topic: How to detect if there is no sound (music is finished) |
Lemming
Replies: 7
Views: 828
|
Forum: Ask for Help Posted: Mon Sep 22, 2008 6:30 am Subject: Why choose a difficult solution? |
| Not sure why you want to take the more difficult route when there are easier ways such as image detection, windows detection or program detection. Ahk is well-suited for these kinds of detection, and ... |
Topic: AutoScriptWriter + Macro Express |
Lemming
Replies: 3
Views: 970
|
Forum: Ask for Help Posted: Sat Sep 20, 2008 1:25 pm Subject: Run both Ahk and MacEx at once |
It's not recommended that you run both Ahk and MacEx at once, but it can be done. Just make sure that they're not assigned the same hotkeys, or perform the same actions concurrently.
In fact, I was ... |
Topic: Canīt get ImageSearch to work |
Lemming
Replies: 7
Views: 784
|
Forum: Ask for Help Posted: Sat Sep 20, 2008 1:50 am Subject: Ahk does work in WoW |
I used to play WoW till around July this year. I had a simple script, and can confirm that ImageSearch does work here.
sample code:
ImageSearch, GoldX,GoldY , X1,Y1, X2,Y2, *3 gold.bmp
You ma ... |
| |