vote up 0 vote down star

I'm making an autohotkey script to run highlighted text through a calculator, and i need to send the contents of the clipboard as a sequence of keypresses, since the calculator doesn't really support pasting of a mathematical operation. How would this be accomplished?

flag

79% accept rate

2 Answers

vote up 1 vote down check

I fixed the original script you wrote here: http://superuser.com/questions/7271/most-useful-autohotkey-scripts/31282#31282 Works fine on my Vista system now.

link|flag
vote up 1 vote down

To map Ctrl + K to send clipboard data for example:

^k::Send %clipboard%
link|flag
It says that's not allowed as an output variable... – RCIX Aug 29 at 4:22
what says that, the script? The script works for me I compiled and tested before posting. It should send the keys just as if it was keyboard input. – John T Aug 29 at 4:39
My mistake, i din't pay enough attention to what line it had the error on... – RCIX Aug 29 at 5:05

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.