| Author |
Message |
Topic: Min2Tray v1.7.7 - minimize window to tray & much more! |
owilsky
Replies: 131
Views: 20677
|
Forum: Scripts & Functions Posted: Mon Feb 12, 2007 6:31 pm Subject: Min2Tray v1.7.7 - minimize window to tray & much more! |
I also like that idea. I would like to be able to run the script with an command line argument (e.g. window title to hide) and then completely exit the script without keeping it resident in memory.
... |
Topic: How do I show a menu at current text cursor position? |
owilsky
Replies: 4
Views: 241
|
Forum: Ask for Help Posted: Wed Jan 25, 2006 4:49 pm Subject: How do I show a menu at current text cursor position? |
Thanks, but I already tried this:
ControlGetFocus c
MsgBox %c%
ControlGetPos, X, Y, , , %c%
MsgBox %X%,%Y%
Menu menuname, Show, %X%, %Y%
But the msgboxes don't display anything. |
Topic: How do I show a menu at current text cursor position? |
owilsky
Replies: 4
Views: 241
|
Forum: Ask for Help Posted: Wed Jan 25, 2006 4:39 pm Subject: How do I show a menu at current text cursor position? |
How do I show a menu at current text cursor position if e.g. the cursor is in an edit box in a form of the web browser?
I tried this, but doesn't work...
ControlGetFocus c
ControlGetPos, X, Y, ... |
Topic: Send to the last active control before tray icon was clicked |
owilsky
Replies: 11
Views: 494
|
Forum: Ask for Help Posted: Fri Dec 16, 2005 3:06 pm Subject: Send to the last active control before tray icon was clicked |
How would this script look like if I did not use the tray icon but a user generated menu on the Win-Q key?
menu, SubMenuTexts, add, &Login x, LoginX
menu, SubMenuTexts, add, &Passwort Y, ... |
Topic: Send to the last active control before tray icon was clicked |
owilsky
Replies: 11
Views: 494
|
Forum: Ask for Help Posted: Wed Dec 14, 2005 3:46 pm Subject: Send to the last active control before tray icon was clicked |
| Wow.... thanks a lot! I must say... outstanding support in this forum! I begin to like AutoHotKey.... |
Topic: Send to the last active control before tray icon was clicked |
owilsky
Replies: 11
Views: 494
|
Forum: Ask for Help Posted: Wed Dec 14, 2005 2:08 pm Subject: Send to the last active control before tray icon was clicked |
Instead of using the tray icon, you could use a RButton Menu.
No, because I do not want to send strings to a special application but I want to be able to send to ANY app, including apps that has c ... |
Topic: Send to the last active control before tray icon was clicked |
owilsky
Replies: 11
Views: 494
|
Forum: Ask for Help Posted: Wed Dec 14, 2005 11:13 am Subject: Send to the last active control before tray icon was clicked |
WinGet, WindowList, List
List =
Loop %WindowList%
{
WinUID := WindowList%A_Index%
WinGetTitle, WinTitle, ahk_id %WinUID%
If WinTitle <>
Break
... |
Topic: Send to the last active control before tray icon was clicked |
owilsky
Replies: 11
Views: 494
|
Forum: Ask for Help Posted: Thu Dec 08, 2005 3:14 pm Subject: Send to the last active control before tray icon was clicked |
Thanks, that helped me a lot.
Unfortunately e.g. in a browser formular the cursor is not in the same field as before, so I made a workaround this way: the script waits for a left mouse click, this wa ... |
Topic: Send to the last active control before tray icon was clicked |
owilsky
Replies: 11
Views: 494
|
Forum: Ask for Help Posted: Thu Dec 08, 2005 12:32 pm Subject: Send to the last active control before tray icon was clicked |
Hi,
I want to be able to send often used strings to various applications. I don't want to use a keyboard shortcut but use the tray menu.
I have extended the ahk tray menu with some menu items, h ... |
| |