| View previous topic :: View next topic |
| Author |
Message |
kmc Guest
|
Posted: Tue May 12, 2009 2:12 pm Post subject: Is there an implementation of 'hotstring reminder' pop-up? |
|
|
As the title says, lazy as I am, I intend to set up a long list of hotstring for replacing. Obviously, it'll be hard to recall all of them. So I'm in search of a hot key which causes a pop-up list of all my hotstrings as a reminder.
Is it possible? I don't know if AHK can put tooltip-like text box next to where you type (cursor position), but at least the pop-up reminder should not grab focus from input area.
Thanks in advance for your help.
kmc |
|
| Back to top |
|
 |
sinkfaze
Joined: 18 Mar 2008 Posts: 5043 Location: the tunnel(?=light)
|
Posted: Tue May 12, 2009 2:33 pm Post subject: |
|
|
A ToolTip might be kind of wieldy depending on how many hotstrings you have but here's an idea:
| Code: | HSList =
(
hlo = hello
gbye = goodbye
stpit = stop it
bqut = be quiet
dntwry = don't worry
bhpy = be happy
)
!q::
MouseGetPos, Px, Py
ToolTip, %HSList%, % Px - 125, % Py - 125
SetTimer, RemoveToolTip, 3000
return
RemoveToolTip:
SetTimer, RemoveToolTip, Off
ToolTip
return |
_________________ Try Quick Search for Autohotkey or see the tutorial for newbies. |
|
| Back to top |
|
 |
kmc Guest
|
Posted: Wed May 13, 2009 8:27 am Post subject: |
|
|
Thanks for the idea. It works (except that I move the HSList declaration after ^q:: line and then it's OK).
Gonna try to make it to some function which on one hand, create hotstrings, on the other hand, put them into the reminder tooltip. |
|
| Back to top |
|
 |
Rhys
Joined: 17 Apr 2007 Posts: 761 Location: Florida
|
|
| Back to top |
|
 |
|