venue11fix

Dell Venue 11 Pro Keyboard Fix

The Venue 11 Pro is a pretty decent tablet with one huge flaw: the function keys are mapped backwards - if you want F2, you have to hold FN+F2. Just pressing F2 will activate Volume Down. Many users might want this, but there are plenty who like to actually use the function keys.

So, here's a solution that remaps the keys backwards so the function keys work like function keys. If you want the alternate function, hold FN along with the function key. There's one limitation - it does not work on the F11 and F12 keys. It works with F1-F10 though.

It's just a simple AutoHotKey script. There's a binary download as well.

#InstallKeybdHook
SendMode Input

Volume_Mute::F1
F1::Volume_Mute

Volume_Down::F2
F2::Volume_Down

Volume_Up::F3
F3::Volume_Up

Media_Play_Pause::F4
F4::Media_Play_Pause

Browser_Search::F5
F5::Browser_Search

LWin & F21:: 
	GetKeyState, state, Alt
	if state = D
		Send, {F6}
	else
		Send, {F8}
Return

F6::#!F21
F8::#F21

LControl & F21:: 
	GetKeyState, state, LWin
	if state = D
		Send, {F7}
Return 

F7::#^F21

LControl & Tab:: 
	GetKeyState, state, LWin
	if state = D
		Send, {F9}
Return 
F9::#^Tab

AppsKey::F10
F10::AppsKey

 

download Venue11Remap.exe