CFMU 1.0 Released
Dan Vega said: What version of ColdFusion are you using? If you are using 9 multi file uploads are pretty easy now ...
[More]
CFMU 1.0 Released
notthatbright said: Hi Dan,
Additionally this is what i get as output from flash
Error: Error #2014: Feature is not av...
[More]
CFMU 1.0 Released
notverybright said: Hi Dan,
I'm also having problems with the onComplete function. It seems it's failing and not genera...
[More]
Runners, I need your advice
Matt W said: Hey Dan,
I was in a similar boat about 4 years ago. I had been running here and there, doing a bit ...
[More]
Runners, I need your advice
Jon Dowdle said: I'm not a runner (so take this as you will) but a great intro into strength training is this book: S...
[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