| Author |
Message |
Topic: Button Focus |
nick
Replies: 10
Views: 172
|
Forum: Ask for Help Posted: Mon Jul 14, 2008 6:15 am Subject: Button Focus |
If you can anwser the above then have you got a anwser to achive the same goal using normal GUI buttons.
#NoEnv
OnMessage(WM_COMMAND := 0x111, "WM_COMMAND")
BS_NOTIFY := 0 ... |
Topic: Disappearing ListView.. |
nick
Replies: 5
Views: 147
|
Forum: Ask for Help Posted: Thu Jun 12, 2008 6:35 am Subject: Disappearing ListView.. |
@engunneer:
IMO there's no need to use Titan's script for only one control.
@Pasukun:
I've found only one way to reproduce this behaviour, the script must fall or jump into the GuiSize routine. W ... |
Topic: AHK 1.0.47.06 - Bug in Process, Waitclose ? |
nick
Replies: 3
Views: 102
|
Forum: Ask for Help Posted: Thu Mar 27, 2008 5:58 pm Subject: AHK 1.0.47.06 - Bug in Process, Waitclose ? |
You haven't put any sleeps in your loop so it runs at extremely high frequency. This is not a bug, just bad practice.
Waits up to Param3 seconds (can contain a decimal point) for a matching process ... |
Topic: AHK 1.0.47.06 - Bug in Process, Waitclose ? |
nick
Replies: 3
Views: 102
|
Forum: Ask for Help Posted: Thu Mar 27, 2008 5:50 pm Subject: AHK 1.0.47.06 - Bug in Process, Waitclose ? |
Hello,
this simple script #NoEnv
Loop,
{
Process, Wait, AutoHotkey.exe
Process, WaitClose, AutoHotkey.exe
}
ExitApp produces a CPU load about 30 % on my office system.
Has ... |
Topic: Unexpected behavior of ControlSetText |
nick
Replies: 8
Views: 309
|
Forum: Ask for Help Posted: Mon Nov 05, 2007 11:14 am Subject: Unexpected behavior of ControlSetText |
In some cases, the GUI options correspond directly to standard window styles. This is not one of those cases.
O.K., that's an answer  |
Topic: Unexpected behavior of ControlSetText |
nick
Replies: 8
Views: 309
|
Forum: Ask for Help Posted: Mon Nov 05, 2007 8:04 am Subject: Unexpected behavior of ControlSetText |
@engunneer:
So far, so good. But which command should i use to change a text control not created with AHK? Is BackgroundTrans an AHK-specific style and would Control behave different?
@lexikos:
... |
Topic: Unexpected behavior of ControlSetText |
nick
Replies: 8
Views: 309
|
Forum: Ask for Help Posted: Sun Nov 04, 2007 9:28 pm Subject: Unexpected behavior of ControlSetText |
Sorry lexikos,
that's no answer! Did you try my code? |
Topic: Unexpected behavior of ControlSetText |
nick
Replies: 8
Views: 309
|
Forum: Ask for Help Posted: Sun Nov 04, 2007 10:10 am Subject: Unexpected behavior of ControlSetText |
Hello,
setting a new text into a AHK text control via ControlSetText seems to "overwrite" the existing text, if BackGroundTrans is specified in its options:
#NoEnv
SetBatchLines, -1
... |
Topic: autofilling comboboxes [SOLVED] |
nick
Replies: 3
Views: 361
|
Forum: Ask for Help Posted: Thu Jul 05, 2007 10:10 pm Subject: autofilling comboboxes [SOLVED] |
Maybe this might come closer:
#NoEnv
Values = 0000|0001|0010|0011|0100|0101|0110|0111|1000|1001|1010|1011|1100|1101|1110|1111
Gui, Margin, 10, 10
Gui, Add, ComboBox, w120 vCombo Limit Number ... |
Topic: Middle mouse button functionality lost |
nick
Replies: 4
Views: 257
|
Forum: Ask for Help Posted: Thu Jul 05, 2007 7:18 am Subject: Middle mouse button functionality lost |
| You can define a custom combination of two keys (except joystick buttons) by using " & " between them. In the below example, you would hold down Numpad0 then press the second key to trig ... |
Topic: Help with a script |
nick
Replies: 2
Views: 156
|
Forum: Ask for Help Posted: Thu Jul 05, 2007 7:02 am Subject: Help with a script |
#MaxThreadsPerHotkey 2
$*F1::
_Break := False
If (_F1)
{
_F1 := False
_Break := True
Return
}
_F1 := True
Loop
{
If (_Break ... |
Topic: What would be the best way to do this? |
nick
Replies: 4
Views: 244
|
Forum: Ask for Help Posted: Thu Jul 05, 2007 6:39 am Subject: What would be the best way to do this? |
| FileRead, PRINT, %A_LoopFileLongPath% |
Topic: Input field breakdown |
nick
Replies: 10
Views: 604
|
Forum: Ask for Help Posted: Sun Jul 01, 2007 10:18 am Subject: Input field breakdown |
#NoEnv
; Layout File
LAY =
(
MODEL=SERIES
CPU=Value1
OS=Value3
MEM1=Value9
)
MODEL := "Unknown"
CPU := "Unknown"
OS := "Unknown"
MEM1 ... |
Topic: GUI and program flow |
nick
Replies: 3
Views: 283
|
Forum: Ask for Help Posted: Sat Jun 30, 2007 7:56 am Subject: GUI and program flow |
Another approach:
Part1:
/*
Do some stuff here that does not require user interaction.
*/
Sleep, 1000
Part2:
; Create a GUI with three buttons.
Gui, Add, Text, x16 y17 w380 h20, Blah ... |
Topic: Display current value of slider |
nick
Replies: 2
Views: 206
|
Forum: Ask for Help Posted: Wed Jun 27, 2007 6:45 am Subject: Display current value of slider |
| http://www.autohotkey.com/forum/post-127319.html#127319 |
| |