| Author |
Message |
Topic: How to get headings from a ListView object? |
Eucaly61
Replies: 6
Views: 778
|
Forum: Ask for Help Posted: Fri Jul 31, 2009 5:47 am Subject: How to get headings from a ListView object? |
| an example is available in http://forum.script-coding.info/viewtopic.php?pid=26126#p26126 |
Topic: Simply key pressing macro - can't switch it off by demand :/ |
Eucaly61
Replies: 12
Views: 1113
|
Forum: Ask for Help Posted: Wed May 27, 2009 3:49 am Subject: Simply key pressing macro - can't switch it off by demand :/ |
add something like below, you could define hotkey other than ^f4 to meet your need#SingleInstance Force
^f4::reload |
Topic: Useful AHK development macros |
Eucaly61
Replies: 1
Views: 2796
|
Forum: Scripts & Functions Posted: Tue May 26, 2009 3:06 pm Subject: Useful AHK development macros |
Below is mine macro to help AHK development
press hotkey ctrl-b to make readonly backup with time-stamp of selected files in Explorer Window, for example
original -- DEMO.ahk
backup -- DEMO-09 ... |
Topic: Invoking directly ContextMenu of Files and Folders |
Eucaly61
Replies: 61
Views: 17836
|
Forum: Scripts & Functions Posted: Tue May 26, 2009 2:47 pm Subject: Invoking directly ContextMenu of Files and Folders |
I don't do further study, but I guess this would be helpful if some CLSID / DLL are not registed in registry key
that is, directly DllGetClassObject from DLL,
you could replace
pcm := Cre ... |
Topic: Invoking directly ContextMenu of Files and Folders |
Eucaly61
Replies: 61
Views: 17836
|
Forum: Scripts & Functions Posted: Tue May 26, 2009 2:38 pm Subject: Invoking directly ContextMenu of Files and Folders |
.
below is the demo code to get and invoke ContextMenu (ShellEx) items without bring up popup menu
(dependency: )
#SingleInstance Force
SetBatchLines,-1
#Include CoHelper.ahk
; FileName ... |
Topic: Invoking directly ContextMenu of Files and Folders |
Eucaly61
Replies: 61
Views: 17836
|
Forum: Scripts & Functions Posted: Tue May 26, 2009 1:53 pm Subject: Invoking directly ContextMenu of Files and Folders |
... how exactly do I use it? ...
Trigger from hotkey, or as a portion of a large script ....
Do not limit your imagination (and also innovation)
...how is this better than the regular context me ... |
Topic: Invoking directly ContextMenu of Files and Folders |
Eucaly61
Replies: 61
Views: 17836
|
Forum: Scripts & Functions Posted: Tue May 26, 2009 7:23 am Subject: Invoking directly ContextMenu of Files and Folders |
the function I used here is not the same one in the script: 32 vs 40
Yes, you are right, func+32 does bring up intel graphic driver context menu !!
By the way, where can I found reference informa ... |
Topic: Invoking directly ContextMenu of Files and Folders |
Eucaly61
Replies: 61
Views: 17836
|
Forum: Scripts & Functions Posted: Tue May 26, 2009 3:17 am Subject: Invoking directly ContextMenu of Files and Folders |
Try after replacing ....
with
DllCall("shell32\SHGetDesktopFolder", "UintP", psf)
DllCall(NumGet(NumGet(1*psf)+32), "Uint", psf, "Uin ... |
Topic: Invoking directly ContextMenu of Files and Folders |
Eucaly61
Replies: 61
Views: 17836
|
Forum: Scripts & Functions Posted: Mon May 25, 2009 10:56 am Subject: Invoking directly ContextMenu of Files and Folders |
those contextmenu items reside under the key:
HKEY_CLASSES_ROOT\Directory\Background\shellex\ContextMenuHandlers\
Sean:
You're right, such item is already there.
There is a way to bring up ... |
Topic: Invoking directly ContextMenu of Files and Folders |
Eucaly61
Replies: 61
Views: 17836
|
Forum: Scripts & Functions Posted: Sun May 24, 2009 10:45 am Subject: how to get shellcontextmenu under certain CLSID |
Is it possible to get shellcontextmenu under certain CLSID?
When I righ click on desktop, such contextmenu (to access intel graphic setting) will be inclueded.
Windows Registry Editor Version 5. ... |
Topic: Multiple Monitor Profiles Possible? |
Eucaly61
Replies: 2
Views: 1047
|
Forum: Ask for Help Posted: Fri May 22, 2009 4:10 pm Subject: Multiple Monitor Profiles Possible? |
[url=http://www.autohotkey.com/forum/viewtopic.php?t=27711]Multi-monitor mode switching script
Please check if the above post could meet your need ...
Below keyword in AutoHotKey forum and also MD ... |
Topic: WindowPad - multi-monitor window-moving tool |
Eucaly61
Replies: 319
Views: 158748
|
Forum: Scripts & Functions Posted: Fri May 22, 2009 11:50 am Subject: WindowScreenMove(P) with original window size |
some people (include me) would like to do WindowScreenMove(P) with original window size. Below is my modificarion on that
find below in WindowScreenMove(P)
if (IsResizable()) ... |
Topic: Easy repeat entry form fill for web sites any app. |
Eucaly61
Replies: 1
Views: 2952
|
Forum: Scripts & Functions Posted: Fri May 22, 2009 12:15 am Subject: Easy repeat entry form fill for web sites any app. |
Some modification based on your ogirinal one
1) Unify the subroutine send key label (%A_GuiControl%) instead
2) wait left-click to trigger (KeyWait, Lbutton, D T3)
=> don't have to wait for f ... |
Topic: Alt+Tab Action for the Mouse Wheel |
Eucaly61
Replies: 42
Views: 19231
|
Forum: Scripts & Functions Posted: Thu May 21, 2009 1:30 am Subject: Alt+Tab Action for the Mouse Wheel |
~Rbutton & LButton::AltTab
RButton::MouseClick, right,,,,, D
RButton up::MouseClick, right,,,,, U
I am not quite understand the meaning of last two lines of the code
A single line seems to ... |
Topic: Detect consecutive incorrect windows logins |
Eucaly61
Replies: 2
Views: 526
|
Forum: Ask for Help Posted: Wed May 20, 2009 10:48 am Subject: Detect consecutive incorrect windows logins |
I have some similar information, WM_WTSSESSION_CHANGE system message could notify logon, logoff, lock, unlock ....
But seems not for login fail (password fail)
While, there maybe more info in
... |
| |