I want to create a hotkey which does the following: Alt+Tab and F5 when I press Shift+CapsLock in AutoHotkeys.

How can I do that?

link|improve this question

30% accept rate
Might want to edit your question. Because I am not sure how a bowel movement and key press can accomplish anything but embarrassment. – MrStatic Feb 2 '10 at 13:47
feedback

2 Answers

+CapsLock::
SendInput !{Tab}
Sleep 100 ; Gives moment for computer to switch. Feel free to tweak this time.
SendInput {F5}
Return
link|improve this answer
feedback

CapsLock & +::AltTab & F5

should do it? autohotkey- Hotkeys

link|improve this answer
This does not work for me. – snitzr Jun 29 '10 at 3:20
feedback

Your Answer

 
or
required, but never shown

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