| Author |
Message |
Topic: dynamic row number in a combobox |
Kellianjaxon
Replies: 3
Views: 180
|
Forum: Ask for Help Posted: Thu Mar 20, 2008 12:24 pm Subject: dynamic row number in a combobox |
Brief testing seems to indicate that number of rows is one of few options you can't modify once the control has been created. However, I couldn't find a confirmation in the documentation.
As a work ... |
Topic: Avoid same hotkey in different hotkey control |
Kellianjaxon
Replies: 6
Views: 240
|
Forum: Ask for Help Posted: Wed Mar 19, 2008 2:14 am Subject: Avoid same hotkey in different hotkey control |
| You can noticably shorten the code by using a single subroutine with a loop to check for a hotkey duplicate. Proper usage of built-in variables A_index and A_GuiControl is going to get you to your goa ... |
Topic: [remap key] "CTRL+SHIFT+P" to "P" ONLY |
Kellianjaxon
Replies: 7
Views: 239
|
Forum: Ask for Help Posted: Sat Mar 15, 2008 11:59 pm Subject: [remap key] "CTRL+SHIFT+P" to "P" ONLY |
Try this:
^+p:: Send, {Control up}{Shift up}p
|
Topic: Sending a space as part of the delimiter for StringSplit |
Kellianjaxon
Replies: 4
Views: 148
|
Forum: Ask for Help Posted: Fri Mar 14, 2008 3:22 am Subject: Sending a space as part of the delimiter for StringSplit |
How can I tell it to search for the entire string?
From "To use a string as a delimiter rather than a character, first use StringReplace to replace all occurrences of the string with a single ... |
Topic: How to make file-chooser dialog navigate to specific folder? |
Kellianjaxon
Replies: 12
Views: 538
|
Forum: Ask for Help Posted: Tue Mar 11, 2008 6:06 am Subject: How to make file-chooser dialog navigate to specific folder? |
Rather than outputing "dir" to a temporary file, why not use a
Argh, I'm a complete moron. You probably meant to link to [url=http://www.autohotkey.com/docs/commands/LoopFile.htm]this page ... |
Topic: How to make file-chooser dialog navigate to specific folder? |
Kellianjaxon
Replies: 12
Views: 538
|
Forum: Ask for Help Posted: Tue Mar 11, 2008 1:55 am Subject: How to make file-chooser dialog navigate to specific folder? |
Rather than send, I find it is more reliable to set the path text using ControlSetText, then navigate to it by activating the Open/Send button with ControlClick or ControlSend.
That's probably very ... |
Topic: scroll lock disable button |
Kellianjaxon
Replies: 3
Views: 183
|
Forum: Ask for Help Posted: Mon Mar 10, 2008 3:39 am Subject: scroll lock disable button |
GetFile(x)
{
Test := GetKeyState("Scrolllock","T")
if Test = 1
{
Send, {F1} ; You never actually sent the key in your script ... |
Topic: How to make file-chooser dialog navigate to specific folder? |
Kellianjaxon
Replies: 12
Views: 538
|
Forum: Ask for Help Posted: Mon Mar 10, 2008 3:30 am Subject: How to make file-chooser dialog navigate to specific folder? |
| Right...of course I never checked the command out before posting. Actually, if I understand correctly, using the command parameters helps only reducing the first three lines from my to-do listing. You ... |
Topic: How to make file-chooser dialog navigate to specific folder? |
Kellianjaxon
Replies: 12
Views: 538
|
Forum: Ask for Help Posted: Mon Mar 10, 2008 3:03 am Subject: How to make file-chooser dialog navigate to specific folder? |
Here's a horrible way to start with in case you won't come up with anything better. This may need tweaking.
/*
Set focus to a File name control.
Type a complete pathname including drive letter ... |
Topic: microphone mute with hotkey |
Kellianjaxon
Replies: 4
Views: 247
|
Forum: Ask for Help Posted: Mon Mar 10, 2008 2:14 am Subject: microphone mute with hotkey |
| Sounds to me like you're adjusting mic volume in the playback section of the volume control. Have you already checked the recording side out for mic settings? Options -> Properties -> Recording ... |
Topic: More about hotstrings |
Kellianjaxon
Replies: 2
Views: 138
|
Forum: Ask for Help Posted: Thu Mar 06, 2008 6:42 pm Subject: More about hotstrings |
Does removing the asterisk option suit your needs?
:?:avel::ável |
Topic: [Resolved] Active window |
Kellianjaxon
Replies: 4
Views: 187
|
Forum: Ask for Help Posted: Thu Mar 06, 2008 3:34 pm Subject: [Resolved] Active window |
You can find that out in the help file by reading the Wintitle parameter explanation for each windowing command. Just look for the line
If this is the letter A and the next 3 parameters are omitted, ... |
Topic: F1-f12 keys? how do i use them? |
Kellianjaxon
Replies: 1
Views: 96
|
Forum: Ask for Help Posted: Thu Mar 06, 2008 3:26 pm Subject: F1-f12 keys? how do i use them? |
That would be
F1:: Send, {F2}{F3}
You can't use a hotstring method because "f2f3" will be sent as a literal string. |
Topic: linking simple one button to 2 buttons. |
Kellianjaxon
Replies: 3
Views: 191
|
Forum: Ask for Help Posted: Thu Mar 06, 2008 3:20 pm Subject: linking simple one button to 2 buttons. |
Maybe like this:
S::Send, {Control Down}E{Control Up}
or simply
S::^E |
Topic: I have a GUI question |
Kellianjaxon
Replies: 2
Views: 182
|
Forum: Ask for Help Posted: Thu Mar 06, 2008 2:02 am Subject: I have a GUI question |
You could make four rectangles to fill the edges like this:
Gui, -Caption +ToolWindow +0x400000
B = border ; Comment this line out to remove visible borders
Gui, Font, S14 Bold, Verdana
Gui, A ... |
| |