| Author |
Message |
Topic: [tool] WinEventHook Messages |
Serenity
Replies: 15
Views: 5243
|
Forum: Scripts & Functions Posted: Fri Dec 12, 2008 6:43 pm Subject: [tool] WinEventHook Messages |
I can not get it to work at all for FireFox or IE.
It works for me on 2k with Explorer messages (Confirm File Delete etc.) and Firefox. Try this:
#SingleInstance Force
#Persistent
SetBatchLine ... |
Topic: CMDret - return output from console progs [DLL version] |
Serenity
Replies: 143
Views: 37843
|
Forum: Utilities & Resources Posted: Tue Dec 09, 2008 12:06 am Subject: CMDret - return output from console progs [DLL version] |
Thanks corrupt. I tried both scripts and neither crashed. |
Topic: [tool] WinEventHook Messages |
Serenity
Replies: 15
Views: 5243
|
Forum: Scripts & Functions Posted: Thu Dec 04, 2008 3:16 pm Subject: [tool] WinEventHook Messages |
Here's an example of a popup blocker using Notepad. The first two parameters in the call to SetWinEventHook() are set to 0x3 to only receive EVENT_SYSTEM_FOREGROUND messages.
#SingleInstance Force ... |
Topic: Close annoying dialog boxes automatically |
Serenity
Replies: 22
Views: 8111
|
Forum: Scripts & Functions Posted: Mon Dec 01, 2008 6:48 pm Subject: Close annoying dialog boxes automatically |
| ShellHook method doesn't catch all dialog boxes. [url=http://www.autohotkey.com/forum/viewtopic.php?t=35659]WinEventHook is better. |
Topic: CMDret - return output from console progs [DLL version] |
Serenity
Replies: 143
Views: 37843
|
Forum: Utilities & Resources Posted: Tue Nov 25, 2008 3:05 pm Subject: CMDret - return output from console progs [DLL version] |
| I was just using the scripts that came with the dll. I don't think I tried any of the earlier versions.Hmm... well that's not good... Sounds like I'll have to revive my test machine. Out of curiosity, ... |
Topic: CMDret - return output from console progs [DLL version] |
Serenity
Replies: 143
Views: 37843
|
Forum: Utilities & Resources Posted: Tue Nov 25, 2008 3:47 am Subject: CMDret - return output from console progs [DLL version] |
| I was just using the scripts that came with the dll. I don't think I tried any of the earlier versions. |
Topic: CMDret - return output from console progs [DLL version] |
Serenity
Replies: 143
Views: 37843
|
Forum: Utilities & Resources Posted: Tue Nov 25, 2008 3:14 am Subject: CMDret - return output from console progs [DLL version] |
| I'm experiencing the same crashing with v3.1.2 and 4a beta as DerRaphael mentioned. I'm also running 2k SP4 with AHK 1.0.47.06.Out of curiousity, does this happen with version 3.2.1 (latest stable rel ... |
Topic: Beta version pre-v1.0.48: Up to 3x faster performance |
Serenity
Replies: 128
Views: 43268
|
Forum: Announcements Posted: Mon Nov 24, 2008 3:26 am Subject: Beta version pre-v1.0.48: Up to 3x faster performance |
Thanks Chris.
One script wouldn't load because the line SetFormat, Float was missing a second parameter. Omitting it used to default to 0.0. |
Topic: lose delay from setTime / KeyWait with GetKeyState? [SOLVED] |
Serenity
Replies: 9
Views: 540
|
Forum: Ask for Help Posted: Tue Oct 21, 2008 11:42 pm Subject: lose delay from setTime / KeyWait with GetKeyState? [SOLVED] |
| I noticed this delay too. |
Topic: Strip File Name From Path |
Serenity
Replies: 4
Views: 865
|
Forum: Ask for Help Posted: Tue Oct 21, 2008 8:58 pm Subject: Strip File Name From Path |
Does dir_out contain spaces? Try putting it in quotes:
Run, "C:\Program Files\Adobe\Adobe Bridge CS3\Bridge.exe" "%dirout%" |
Topic: Any way to clear edit control upon focus or initial change |
Serenity
Replies: 4
Views: 404
|
Forum: Ask for Help Posted: Tue Oct 21, 2008 8:56 pm Subject: Any way to clear edit control upon focus or initial change |
You can use OnMessage to catch clicks in the Edit control:
Gui, Add, Edit, r3 vEditText HwndEdit y+10 w140, Add some extra notes.
Gui, Show
OnMessage(0x201, "WM_LBUTTONDOWN")
R ... |
Topic: Tray tooltip class |
Serenity
Replies: 4
Views: 653
|
Forum: Ask for Help Posted: Tue Oct 21, 2008 8:46 pm Subject: Tray tooltip class |
| The class is tooltips_class32. |
Topic: Single click vs Double click on tray icon |
Serenity
Replies: 4
Views: 500
|
Forum: Ask for Help Posted: Tue Oct 21, 2008 8:36 pm Subject: Single click vs Double click on tray icon |
| Is there a method to differentiate between a single click and double click, and possibly somethink like a shift-click, on the tray icon, so that I could perform different functions depending on which ... |
Topic: lose delay from setTime / KeyWait with GetKeyState? [SOLVED] |
Serenity
Replies: 9
Views: 540
|
Forum: Ask for Help Posted: Tue Oct 21, 2008 6:13 pm Subject: lose delay from setTime / KeyWait with GetKeyState? [SOLVED] |
Use the timeout option:
$r::
KeyWait r, T0.2
If A_TimeSinceThisHotkey > 200
Send {a}
Else
Send {r}
Return |
Topic: Trying to get win key to close active window |
Serenity
Replies: 1
Views: 549
|
Forum: Ask for Help Posted: Tue Oct 21, 2008 5:53 pm Subject: Trying to get win key to close active window |
| LWin::Send !{F4} |
| |