How to make a Alt+Tab and F5 hotkey in Autohotkeys

3

1

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?

janoChen

Posted 2010-02-02T12:47:08.620

Reputation: 561

Might want to edit your question. Because I am not sure how a bowel movement and key press can accomplish anything but embarrassment. – Unfundednut – 2010-02-02T13:47:38.560

Answers

1

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

snitzr

Posted 2010-02-02T12:47:08.620

Reputation: 1 972

0

CapsLock & +::AltTab & F5

should do it? autohotkey- Hotkeys

outsideblasts

Posted 2010-02-02T12:47:08.620

Reputation: 6 297

This does not work for me. – snitzr – 2010-06-29T03:20:03.260