| Author |
Message |
Forum: Scripts Topic: TypingAid v2.16b - Word AutoCompletion Utility |
| leuce |
|
Posted: August 9th, 2011, 8:48 am
|
|
Replies: 493 Views: 49308
|
| For monitoring the clipboard, I think that would only make sense if the item in your clipboard is a single word. I think this one should be do-able. IMO, being able to add ONLY a single word from the clipboard would not be terribly useful. The scenarios I think of are when a user needs to quickly a... |
|
 |
Forum: Scripts Topic: TypingAid v2.16b - Word AutoCompletion Utility |
| leuce |
|
Posted: August 8th, 2011, 10:21 am
|
|
Replies: 493 Views: 49308
|
| Hello I came upon TypingAid while looking for a replacement of LetMeType that allows me to use Tab or Enter as the insert hotkey (with LMT one has to type the number). The following two items seem to be missing from TypingAid -- do you think these will be useful to more users than just me? 1. Monito... |
|
 |
Forum: Support Topic: My hotkey is quote and space |
| leuce |
|
Posted: November 27th, 2010, 12:44 pm
|
|
Replies: 1 Views: 148
|
G'day everyone
Can you please tell me what the hotkey syntax for the following would be?
When I press a single quote followed by a space, I want the computer to type just a single quote.
This doesn't work:
::'Space::'
Can anyone please tell me how to do it?
Thanks
Samuel |
|
 |
Forum: Support Topic: Let a hotkey delete a previous character |
| leuce |
|
Posted: August 1st, 2006, 4:56 pm
|
|
Replies: 1 Views: 457
|
| G'day everyone I have a program installed which, if active, causes accent characters to be typed twice. In other words, if I press the circumflex character (Shift+6) to get ^, then on screen two of them appear, as in ^^. However, I can't simply set ::^^::^ to make AHK turn the two into one, because ... |
|
 |
Forum: Support Topic: Dismiss a timed-out window before locking the computer |
| leuce |
|
Posted: July 5th, 2006, 1:13 pm
|
|
Replies: 3 Views: 1971
|
PhiLho wrote: Perhaps add some Sleep.
Actually, I simply added the WinKill to a separate script which also calls p2.exe, and put that in the place of p2.exe in the script of post #1. |
|
 |
Forum: Support Topic: Dismiss a timed-out window before locking the computer |
| leuce |
|
Posted: July 5th, 2006, 11:50 am
|
|
Replies: 3 Views: 1971
|
| G'day everyone I have the following script which locks the computer after 5 minutes of inactivity and after a warning message times out after 5 seconds. The program p2.exe locks the computer (it basically presses Win+L). #Persistent #InstallKeybdHook #InstallMouseHook SetTimer, f, 1000 Return f: If ... |
|
 |
Forum: Support Topic: How to detect a key being held down for long? |
| leuce |
|
Posted: July 5th, 2006, 10:32 am
|
|
Replies: 3 Views: 686
|
Terrapin wrote: Hi, I came up with this little bit of code which might help you...
Neat! The script has an interesting side-effect... the fact that your example uses a simple MsgBox instead of a more complex one means that when the user releases the spacebar, it also dismisses the message box :-) |
|
 |
Forum: Support Topic: How to detect a key being held down for long? |
| leuce |
|
Posted: July 5th, 2006, 9:28 am
|
|
Replies: 3 Views: 686
|
| G'day everyone Is there a way for a script to detect that a certain key is being held down for a certain period of time? I want a certain action to happen when the user holds down the spacebar for more than 10 seconds. The action doesn't have to happen before the user releases the spacebar (that wou... |
|
 |
Forum: Support Topic: Need Crtl+Alt+Del combination |
| leuce |
|
Posted: July 4th, 2006, 5:00 pm
|
|
Replies: 11 Views: 966
|
PhiLho wrote: Otherwise, Win+L locks my computer too...
Nice! Unfortunately I can't press Win+L in the middle of a script, so what I did is I created a separate script with just one line in it to press Win+L, and then I run that script from within the first script. |
|
 |
Forum: Support Topic: Need Crtl+Alt+Del combination |
| leuce |
|
Posted: July 4th, 2006, 4:24 pm
|
|
Replies: 11 Views: 966
|
| You won't make it. CTRL+ALT+DEL is established at a system level which AHK (an application) isn't able to trigger. What a pity. I'm trying to write a panick script for people to lock their computers by pressing Esc three times in quick succession. The key combination for locking the computer, is Ct... |
|
 |
Forum: Scripts Topic: Computer Lock |
| leuce |
|
Posted: July 4th, 2006, 3:13 pm
|
|
Replies: 62 Views: 28257
|
Jon wrote: Do you mean that it doesn't prompt you to set a password or doesn't ask you for a password to unlock the screen?
It didn't even lock the screen. But now it works, with your changes made, thanks. I just can't get it to dismiss the Task Manager (but that's no problem for me at the moment). |
|
 |
Forum: Scripts Topic: Computer Lock |
| leuce |
|
Posted: July 4th, 2006, 1:35 pm
|
|
Replies: 62 Views: 28257
|
| This script will lock the screen preventing anyone accessing your PC once the lock has been activated. As soon as the script starts you will be prompted to set your password. This password will be used to unlock the screen. Not on WXPSP2 running the latest stable version of AHK. The script doesn't ... |
|
 |
Forum: Support Topic: Scroller script question, again |
| leuce |
|
Posted: June 28th, 2006, 10:57 am
|
|
Replies: 1 Views: 485
|
|
 |
Forum: Support Topic: WinActivate a trayicon |
| leuce |
|
Posted: June 28th, 2006, 9:53 am
|
|
Replies: 9 Views: 966
|
| Try this * Untested Mod * ... Nope, but with two changes, it works. One change is that you have to use the ahk_class method for calling the application, otherwise it interferes with the clipboard calling process of the application itself. The other change is the fact that the cWin items must be in ... |
|
 |
Forum: Support Topic: WinActivate a trayicon |
| leuce |
|
Posted: June 28th, 2006, 9:26 am
|
|
Replies: 9 Views: 966
|
| Yes! The above code activates it. But I find that ClipTorrent will no more be minimised to tray. Do you experience this ? Yes, but I already licked it: ^m:: IfWinExist, ClipTorrent { WinHide, ClipTorrent return } else { Send, ^c DetectHiddenWindows, On Winshow, ahk_class TFormMain Wi... |
|
 |
| Sort by: |