| Author |
Message |
Topic: XButton1 as prefix key disables XButton1 alone |
jaco0646
Replies: 14
Views: 127
|
Forum: Ask for Help Posted: Sun Mar 21, 2010 7:46 am Subject: XButton1 as prefix key disables XButton1 alone |
The behavior is not related to the #IfWin directive.
When a script is launched, each remapping is translated into a pair of hotkeys. For example, a script containing a::b actually contains the foll ... |
Topic: AutoHotkey_L : Arrays, Debugger, #If expression, etc. |
jaco0646
Replies: 443
Views: 82674
|
Forum: Scripts & Functions Posted: Sun Mar 21, 2010 5:03 am Subject: AutoHotkey_L : Arrays, Debugger, #If expression, etc. |
| The comparison of features link in version history seems dead: http://www.autohotkey.net/~Lexikos/AutoHotkey_L/docs/LvsU.htm. |
Topic: how to reduce lines in this code |
jaco0646
Replies: 7
Views: 108
|
Forum: Ask for Help Posted: Sun Mar 21, 2010 4:42 am Subject: how to reduce lines in this code |
| I don't know if you can call a function by using a variable with its full name.[URL=http://www.autohotkey.com/docs/Functions.htm#DynCall]Dynamically Calling a Function |
Topic: Re: RegExMatch, Why is it not finding all the subpatterns? |
jaco0646
Replies: 7
Views: 117
|
Forum: Ask for Help Posted: Sun Mar 21, 2010 4:29 am Subject: Re: RegExMatch, Why is it not finding all the subpatterns? |
| To be fair, RegExMatch does not claim to work with RegExBuddy, which I would guess is similar to global option that is on by default. Note that global is an option, not an inherent feature of regular ... |
Topic: How to recognise a good programmer ... |
jaco0646
Replies: 1
Views: 42
|
Forum: General Chat Posted: Sun Mar 21, 2010 4:05 am Subject: How to recognise a good programmer ... |
Interesting. I fail at #5 because all I know is AHK.  |
Topic: "Dynamic" - GUI |
jaco0646
Replies: 14
Views: 375
|
Forum: Ask for Help Posted: Sat Mar 20, 2010 7:39 pm Subject: "Dynamic" - GUI |
| I have one more suggestion, since it's on my mind from a different thread. I often see code, even from veteran scripters, that ends the auto-execute section (with a return) but GoSubs over that return ... |
Topic: Flashing window on start |
jaco0646
Replies: 1
Views: 31
|
Forum: Ask for Help Posted: Sat Mar 20, 2010 6:42 pm Subject: Flashing window on start |
Run app.exe,, hide  |
Topic: Re: RegExMatch, Why is it not finding all the subpatterns? |
jaco0646
Replies: 7
Views: 117
|
Forum: Ask for Help Posted: Sat Mar 20, 2010 6:28 pm Subject: Re: RegExMatch, Why is it not finding all the subpatterns? |
RegExMatch is not global. It fills an array only "If any capturing subpatterns are present..."
For global matching you need something like test = ab1.1 22 33 44 55 66 77 88 99 0.0yz
po ... |
Topic: "Dynamic" - GUI |
jaco0646
Replies: 14
Views: 375
|
Forum: Ask for Help Posted: Sat Mar 20, 2010 5:33 pm Subject: "Dynamic" - GUI |
I suggest using GuiControl, Focus rather than ControlFocus and using the Checked option for the first radio button (as in my second post above).
The focus subroutine is probably more useful if ... |
Topic: ComboBox List - Setting Value |
jaco0646
Replies: 14
Views: 163
|
Forum: Ask for Help Posted: Fri Mar 19, 2010 7:41 am Subject: ComboBox List - Setting Value |
I've rewritten the script to use an INI file, and hopefully be more readable as well.#SingleInstance force
#NoEnv
SetBatchLines -1
f = NumberMatch.ini
IfNotExist, %f%
{ ;Sample data
IniW ... |
Topic: Change Background Color of Edit Control |
jaco0646
Replies: 1
Views: 49
|
Forum: Ask for Help Posted: Fri Mar 19, 2010 2:15 am Subject: Change Background Color of Edit Control |
| [URL=http://www.autohotkey.com/forum/viewtopic.php?p=217760#217760]Edit Control Background Color |
Topic: word document |
jaco0646
Replies: 4
Views: 102
|
Forum: Ask for Help Posted: Fri Mar 19, 2010 2:09 am Subject: word document |
| [URL=http://www.autohotkey.com/forum/viewtopic.php?t=31923]MS Office Automation Functions (via COM) [thanks Sean] |
Topic: Script for muting line-in |
jaco0646
Replies: 7
Views: 109
|
Forum: Ask for Help Posted: Thu Mar 18, 2010 10:27 pm Subject: Script for muting line-in |
| This might work, but you'll have to read the remarks on the MButton::SoundSet, +1, Line, Mute |
Topic: Script for muting line-in |
jaco0646
Replies: 7
Views: 109
|
Forum: Ask for Help Posted: Thu Mar 18, 2010 9:49 pm Subject: Script for muting line-in |
| I think most forums encourage learning over leaching. This one is no different; however, I appreciate your consideration in modifying the topic title.MButton::SendInput {Volume_Mute} |
Topic: ComboBox List - Setting Value |
jaco0646
Replies: 14
Views: 163
|
Forum: Ask for Help Posted: Thu Mar 18, 2010 9:40 pm Subject: ComboBox List - Setting Value |
CB_list = 1|2|3|4|5
Gui, Add, ComboBox, vCB, %CB_list%
Gui, Add, Button, Default, Add Item
Gui, Show
return
GuiClose:
ExitApp
ButtonAddItem:
Gui, Submit, NoHide
CB_list .= &quo ... |
| |