| Author |
Message |
Topic: A_WishList |
jaco0646
Replies: 11
Views: 252
|
Forum: Wish List Posted: Fri Feb 10, 2012 9:09 pm Subject: A_WishList |
See polyethene's second post.
EDIT: +1 to tidbit's suggestion on #Including constants.
Regarding the comparison of constants to functions, here are the definitions I'm working with.A language is ... |
Topic: A_WishList |
jaco0646
Replies: 11
Views: 252
|
Forum: Wish List Posted: Fri Feb 10, 2012 9:01 pm Subject: A_WishList |
AHK has over 100 constants
I suggest that from now on, every proposal for a new constant must also propose an existing constant to delete.  |
Topic: %HWND%:+OwnDialogs |
jaco0646
Replies: 2
Views: 132
|
Forum: Wish List Posted: Wed Feb 08, 2012 3:26 pm Subject: %HWND%:+OwnDialogs |
| I expect SetParent would be effective in combination with Lexikos' well-known [URL=http://www.autohotkey.com/forum/viewtopic.php?p=270721#270721]method of setting a dialog's coordinates; but of course ... |
Topic: function that return the active keyboard |
jaco0646
Replies: 1
Views: 53
|
Forum: Ask for Help Posted: Wed Feb 08, 2012 6:02 am Subject: function that return the active keyboard |
| [URL=http://www.autohotkey.com/forum/viewtopic.php?p=491260]Detecting the currently-active language |
Topic: %HWND%:+OwnDialogs |
jaco0646
Replies: 2
Views: 132
|
Forum: Wish List Posted: Wed Feb 08, 2012 5:09 am Subject: %HWND%:+OwnDialogs |
Since v1.1.03 Owner and Parent can attach an AHK Gui to an external window. Can the same feature be added for AHK dialogs, i.e. attach a modal dialog to a 3rd party window?
One idea for syntax is Win ... |
Topic: ~ prefix does not work with ::: hotkey |
jaco0646
Replies: 2
Views: 59
|
Forum: Ask for Help Posted: Wed Feb 08, 2012 4:14 am Subject: ~ prefix does not work with ::: hotkey |
| Colon is just shift + semicolon, right?~+;::TrayTip,,pressed colon |
Topic: GUI editable textbox event |
jaco0646
Replies: 7
Views: 102
|
Forum: Ask for Help Posted: Wed Feb 08, 2012 4:00 am Subject: GUI editable textbox event |
Add the word default in the button's options.Gui, Add, Edit , vEdit
Gui, Add, Button, Default, Submit
Gui, Show
return
GuiClose:
ExitApp
ButtonSubmit:
Gui, Submit, NoHide
MsgBo ... |
Topic: Modify Files on Autohotkey.net |
jaco0646
Replies: 7
Views: 223
|
Forum: General Chat Posted: Sun Feb 05, 2012 4:39 pm Subject: Modify Files on Autohotkey.net |
+1 @JSLover
I enjoyed several features of the old file manager, such as the [URL=http://www.autohotkey.com/forum/topic51923.html]SiteMap and hit counters. |
Topic: UpDown GUI Control Numbers Only? |
jaco0646
Replies: 10
Views: 207
|
Forum: Ask for Help Posted: Sat Feb 04, 2012 7:37 pm Subject: UpDown GUI Control Numbers Only? |
I was following up on your last sentence.To be honest, I haven't tried it with an up/down buddy control
I recommend trying it. UpDowns are preferable to OnMessage for ensuring an input is digits. ... |
Topic: Gui Threads: Critical, Off |
jaco0646
Replies: 2
Views: 193
|
Forum: Wish List Posted: Sat Feb 04, 2012 5:25 pm Subject: Gui Threads: Critical, Off |
| How about allowing Gui threads to interrupt themselves by default? Then Critical remains the same, for cases where that's undesirable. |
Topic: Conditional FileInstall |
jaco0646
Replies: 2
Views: 122
|
Forum: Wish List Posted: Sat Feb 04, 2012 5:19 pm Subject: Conditional FileInstall |
Looks like you've discovered the only solution.
FileInstall is processed by Ahk2Exe, which is not aware of variables. Even if it were, the script is not run when it is compiled, so the variable could ... |
Topic: UpDown GUI Control Numbers Only? |
jaco0646
Replies: 10
Views: 207
|
Forum: Ask for Help Posted: Fri Feb 03, 2012 6:16 pm Subject: UpDown GUI Control Numbers Only? |
I recommend it.
Gui, Add, Edit
Gui, Add, UpDown, vUD
Gui, Add, Button, Default, Submit
Gui, Show
return
GuiClose:
ExitApp
ButtonSubmit:
Gui, Submit, NoHide
MsgBox,% UD
retu ... |
Topic: Paper Scissors Rock |
jaco0646
Replies: 3
Views: 282
|
Forum: Scripts & Functions Posted: Fri Feb 03, 2012 4:04 pm Subject: Paper Scissors Rock |
The Wikipedia article on [URL=http://en.wikipedia.org/wiki/Rock-paper-scissors]Rock-paper-scissors is surprisingly interesting.  |
Topic: WinKey-E Replacement Script Leaves WinKey Stuck Down |
jaco0646
Replies: 4
Views: 99
|
Forum: Ask for Help Posted: Thu Feb 02, 2012 10:05 pm Subject: WinKey-E Replacement Script Leaves WinKey Stuck Down |
Use SendPlay or SendEvent in place of Send.
[url=http://www.autohotkey.com/forum/viewtopic.php?t=80725]Windows key sitcks on when there's an 'L' in SendInput text |
Topic: How do I write a REG_QWORD to the registry? |
jaco0646
Replies: 4
Views: 110
|
Forum: Ask for Help Posted: Thu Feb 02, 2012 9:35 pm Subject: How do I write a REG_QWORD to the registry? |
| I believe you'll need to use COM as in this example: reg_qword; there are a few more hits. |
| |