up vote 0 down vote favorite
1
share [g+] share [fb]

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?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

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|improve this answer
feedback

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

^k::Send %clipboard%
link|improve this answer
It says that's not allowed as an output variable... – RCIX Aug 29 '09 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 '09 at 4:39
My mistake, i din't pay enough attention to what line it had the error on... – RCIX Aug 29 '09 at 5:05
feedback

Your Answer

 
or
required, but never shown

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