Just use AutoHotkey to simulate it for you.

here's the scrip I use to do it (my 'show items' key is set to Capslock, you can change that to whatever you want of course):


toggle=0
*CapsLock::
toggle:=!toggle
If Toggle
Send {CapsLock up}
Else
Send {CapsLock down}
Return