| Author |
Message |
Topic: Temporarily Disable ListView Sorting |
Roland
Replies: 3
Views: 181
|
Forum: Ask for Help Posted: Mon Jan 17, 2011 7:16 pm Subject: Temporarily Disable ListView Sorting |
| Have a look at the "NoSort" option. |
Topic: AHK Chess |
Roland
Replies: 12
Views: 420
|
Forum: Ask for Help Posted: Wed Jan 05, 2011 8:52 pm Subject: AHK Chess |
| Just use BackgroundTrans for the pieces (see docs for "Gui, Picture"). Plus you'll have to adjust the size of the background so that each square is the same size as a piece. |
Topic: WinWait // Loop question |
Roland
Replies: 5
Views: 337
|
Forum: Ask for Help Posted: Wed Jan 05, 2011 8:01 pm Subject: WinWait // Loop question |
ErrorLevel will "persist" until it is changed - either by another command that uses ErrorLevel, or by yourself.
Edit:
It's "WinWait [, WinTitle, WinText, Seconds, ExcludeTitle, Excl ... |
Topic: AHK Chess |
Roland
Replies: 12
Views: 420
|
Forum: Ask for Help Posted: Wed Jan 05, 2011 7:56 pm Subject: AHK Chess |
| I think Crafty implements the Winboard protocol - you could probably use that (works via stdin/stdout). |
Topic: WinWait // Loop question |
Roland
Replies: 5
Views: 337
|
Forum: Ask for Help Posted: Wed Jan 05, 2011 7:36 pm Subject: WinWait // Loop question |
If ErrorLevel continue ;goes to the next loop, skipping the below
No it doesn't. It should be either
If ErrorLevel
continue
or
IfEqual, ErrorLevel, 1, continue
|
Topic: [SOLVED] Getting the Autosize Size of script's GUI |
Roland
Replies: 7
Views: 294
|
Forum: Ask for Help Posted: Sun Dec 26, 2010 6:43 pm Subject: [SOLVED] Getting the Autosize Size of script's GUI |
Maybe something like this:
#NoEnv
#SingleInstance force
Gui, -Caption
Gui, Margin, 5, 5
Gui, Add, Edit
Gui, Add, Listview
Gui, Add, Button, gAddButton, &Click me
Gui, Show
return
A ... |
Topic: GUI - Align Edit Boxes, dropdowns, with items in ListBox? |
Roland
Replies: 2
Views: 191
|
Forum: Ask for Help Posted: Mon Nov 22, 2010 7:18 pm Subject: GUI - Align Edit Boxes, dropdowns, with items in ListBox? |
Is there any way to do this simply?
I don't think there's a simple way.
Why are you trying to do this? |
Topic: comparing wordlists, any idea? |
Roland
Replies: 7
Views: 324
|
Forum: Ask for Help Posted: Sun Nov 21, 2010 2:15 pm Subject: comparing wordlists, any idea? |
And another question: how change it to output the original lines as result? (I need the output to be as it was. "accidental adj.", "above adv, prep S2, W1", and so on)
OK - bu ... |
Topic: comparing wordlists, any idea? |
Roland
Replies: 7
Views: 324
|
Forum: Ask for Help Posted: Fri Nov 19, 2010 9:00 pm Subject: comparing wordlists, any idea? |
| This is fairly tricky - the easiest way would be if you could get hold of the data in a better format. Failing that, you are going to have to compile a list of everything that can follow the actual wo ... |
Topic: comparing wordlists, any idea? |
Roland
Replies: 7
Views: 324
|
Forum: Ask for Help Posted: Fri Nov 19, 2010 7:03 pm Subject: comparing wordlists, any idea? |
Here's my take on it - the idea is to "tidy up" the lists in a first step and convert them to comma-separated lists, so that we can use AHK's "if var in ..." command.
#NoEnv
#S ... |
Topic: How to make controls' background transparent(checkbox,radio) |
Roland
Replies: 3
Views: 586
|
Forum: Ask for Help Posted: Fri Nov 19, 2010 7:36 am Subject: How to make controls' background transparent(checkbox,radio) |
| http://www.autohotkey.com/forum/viewtopic.php?t=46372checkbox+background |
Topic: [AHK_L] Minor inconsistency with HasKey() |
Roland
Replies: 2
Views: 178
|
Forum: Ask for Help Posted: Sun Nov 14, 2010 3:27 pm Subject: [AHK_L] Minor inconsistency with HasKey() |
Whoops You're right of course. And it's not missing either, so please ignore that part. |
Topic: [AHK_L] Minor inconsistency with HasKey() |
Roland
Replies: 2
Views: 178
|
Forum: Ask for Help Posted: Sun Nov 14, 2010 1:47 pm Subject: [AHK_L] Minor inconsistency with HasKey() |
| HasKey(obj, key) is missing (obj.HasKey(key) works). Also, as far as I can tell the only place where HasKey() is documented is in the changelog - it's not listed in the docs with the other object meth ... |
Topic: Passing many options to a function |
Roland
Replies: 25
Views: 934
|
Forum: Ask for Help Posted: Tue Nov 09, 2010 7:19 pm Subject: Passing many options to a function |
I'm using the normal (not _L) version. Would prefer to stick with that if possible.
I wrote my reply before seeing this, so I'll post it anyway. Here's a simple example in AHK_L:
#NoEnv
#Sin ... |
Topic: best way to keep track of time elapsed |
Roland
Replies: 4
Views: 257
|
Forum: Ask for Help Posted: Thu Nov 04, 2010 6:02 pm Subject: best way to keep track of time elapsed |
| [url=http://www.autohotkey.com/docs/Variables.htm#TimeSinceThisHotkey]A_TimeSinceThisHotkey? |
| |