jQuery Select Example
johnny said: oh, great. I help me a lot. Thanks!!!
[More]
Multiple File Uploads in ColdFusion
Robert N. said: Hi,
I'd like to be able to upload multiple files as part of a form submission. Is this possible wi...
[More]
Coldbox datasource setting and Wirebox
Bummed Out said: Just starting out with ColdBox 3.1.0 and ready to give up because I can't access my data source sett...
[More]
CFGrid Event Listeners
steve said: I was wondering if there was an event to handle the refreshing of new data either from the initial l...
[More]
Getting the public IP address of a visitor
Ken Hughes said: Could you use the accept-language browser header? If it's en-US, treat them as in the USA, otherwise...
[More]
#1 by James Moberg on 12/27/07 - 4:57 PM
Here's the opensource software:
http://www.autohotkey.com/
Here's the script that I use that also includes Title Case and lower quote case (to lowercase text and encapsulate it in quotes):
CUT:
oldclipboard:=ClipboardAll
WinActivate,ahk_id %id%
WinWaitActive,ahk_id %id%,,0
WinGetClass,class,ahk_id %id%
If class In Progman,WorkerW,Explorer,CabinetWClass
Send,{F2}
;Sleep,500
Send,^c
;ClipWait,0
string=%clipboard%
Return
PASTE:
WinActivate,ahk_id %id%
WinWaitActive,ahk_id %id%,,0
If class In Progman,WorkerW,Explorer,CabinetWClass
Send,{F2}
clipboard=%string%
Send,^v
Clipboard:=oldclipboard
oldclipboard=
Return
;Title Case
^!t::
Gosub,CUT
StringLower,string,string,T
Gosub,PASTE
Return
;Upper Case
^!u::
Gosub,CUT
StringUpper,string,string
Gosub,PASTE
Return
;Lower Case
^!l::
Gosub,CUT
StringLower,string,string
Gosub,PASTE
Return
;Lower Case Quote
^q::
Gosub,CUT
StringLower,string,string
string="%string%"
Gosub,PASTE
Return