| Author |
Message |
Topic: Tracing and handling any keystroke |
Young
Replies: 2
Views: 495
|
Forum: Ask for Help Posted: Mon Mar 27, 2006 4:16 pm Subject: Tracing and handling any keystroke |
| Thanks. It is a pity... |
Topic: Tracing and handling any keystroke |
Young
Replies: 2
Views: 495
|
Forum: Ask for Help Posted: Sun Mar 26, 2006 6:34 pm Subject: Tracing and handling any keystroke |
| Is there a way to trace and handle ANY (well, almost any) keystroke? It could be useful for implementing a mechanism of recording key macros (to memorize a sequence of key strokes made by a user in or ... |
Topic: COM Technology |
Young
Replies: 3
Views: 375
|
Forum: Ask for Help Posted: Mon Jan 23, 2006 8:16 pm Subject: COM Technology |
| Thank you. But what a pity that AutoHotkey doesn't have COM server! I believe, that AutoHotkey has huge amount of features which standard VBScript (Windows Script Host) lacks, for example, the call of ... |
Topic: COM Technology |
Young
Replies: 3
Views: 375
|
Forum: Ask for Help Posted: Sun Jan 22, 2006 11:23 pm Subject: COM Technology |
| Are there plans to develop COM-server supporting calls of AutoHotkey commands? For example, it would be useful if there were possibility to use AutoHotkey from VBScript. Besides it would be also quite ... |
Topic: Quick-Start Tutorial french translation |
Young
Replies: 16
Views: 1670
|
Forum: General Chat Posted: Tue Jan 10, 2006 9:30 pm Subject: Quick-Start Tutorial french translation |
| 2(Chris) I think it would be better to replace the link on the Russian documentation on the page http://www.autohotkey.com/docs/ with the following link: http://www.script-coding.info/AutoHotkeyTransl ... |
Topic: Set focus to the definite control |
Young
Replies: 3
Views: 386
|
Forum: Ask for Help Posted: Wed Dec 28, 2005 9:55 pm Subject: Set focus to the definite control |
2(shimanov) Thanx, it works!
#persistent
SetTimer, timer_MonitorWindows, 100
return
timer_MonitorWindows:
WinGet, wid_list, List, MyWindowTitle
Loop, %wid_list%
{
wid := wi ... |
Topic: Set focus to the definite control |
Young
Replies: 3
Views: 386
|
Forum: Ask for Help Posted: Tue Dec 27, 2005 9:19 pm Subject: Set focus to the definite control |
| Maybe it is worth storing the "processed" windows (or the handles of the windows themselves or the identifiers of their processes) in a special list (array)? If it is a reasonable idea and if it is po ... |
Topic: Set focus to the definite control |
Young
Replies: 3
Views: 386
|
Forum: Ask for Help Posted: Sun Dec 25, 2005 9:19 pm Subject: Set focus to the definite control |
When a definite application is being launched, I need to set focus to the definite control of its window. Something like that:#Persistent
SetFocus:
WinWait, MyWindowTitle
ControlFocus, ListBox1 ... |
Topic: Hiding active window using DllCall "ShowWindow" |
Young
Replies: 14
Views: 1053
|
Forum: Ask for Help Posted: Sun Dec 11, 2005 11:31 am Subject: Hiding active window using DllCall "ShowWindow" |
| I've modified a bit the "Minimize Window to Tray Menu" script from the AutoHotkey Help (in the article "AutoHotkey Script Showcase"). The original script "badly" minimizes to tray such applications as ... |
Topic: Hiding active window using DllCall "ShowWindow" |
Young
Replies: 14
Views: 1053
|
Forum: Ask for Help Posted: Sat Dec 10, 2005 11:04 pm Subject: Hiding active window using DllCall "ShowWindow" |
(shimanov) Thanks a lot, the check for the WS_VISIBLE style is just the thing.
P.S. I wonder if you're a Russian. I'm Russian myself and your nick sounds Russian to me. |
Topic: Hiding active window using DllCall "ShowWindow" |
Young
Replies: 14
Views: 1053
|
Forum: Ask for Help Posted: Mon Dec 05, 2005 2:06 pm Subject: Hiding active window using DllCall "ShowWindow" |
(evl, corrupt, shimanov) Thanks a lot! I haven’t anticipated such activity It seems that the variant by shimanov is just what I wanted (at least the code suggested here works OK). I’ll try to adapt ... |
Topic: Hiding active window using DllCall "ShowWindow" |
Young
Replies: 14
Views: 1053
|
Forum: Ask for Help Posted: Sun Dec 04, 2005 12:32 am Subject: Hiding active window using DllCall "ShowWindow" |
| WinHide incorrectly works with some programs. The window disappears, but the "button" on the taskbar remains. That's why I'd like to try DllCall "ShowWindow". |
Topic: Hiding active window using DllCall "ShowWindow" |
Young
Replies: 14
Views: 1053
|
Forum: Ask for Help Posted: Sat Dec 03, 2005 11:45 pm Subject: Hiding active window using DllCall "ShowWindow" |
I'm trying to hide an active window with the help of API call:WinWait, A,, 2
WinGet, mwt_ActiveID, ID
Result := DllCall ("ShowWindow", UInt, %mwt_ActiveID%, Int, 0)There is no ... |
Topic: DllCall(), pointer to the function |
Young
Replies: 3
Views: 349
|
Forum: Ask for Help Posted: Mon Nov 28, 2005 10:25 pm Subject: DllCall(), pointer to the function |
| As far as I understood there is no way at all to use API function with a pointer to another function as its parameter. Is there any hope that such a way will appear in the future versions of AutoHotke ... |
Topic: DllCall(), pointer to the function |
Young
Replies: 3
Views: 349
|
Forum: Ask for Help Posted: Sun Nov 27, 2005 9:14 pm Subject: DllCall(), pointer to the function |
Is it possible to pass a pointer to the function with the help of DllCall()? I mean, is it feasible to write a code like this? The code below doesn't work:
#Persistent
MyTimer()
{
Ms ... |
| |