Shoutbox

Disable F1 button? - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Skype & Technology (/forumdisplay.php?fid=9)
+---- Forum: Skype & Live Messenger (/forumdisplay.php?fid=10)
+----- Thread: Disable F1 button? (/showthread.php?tid=73914)

Disable F1 button? by M73A on 04-25-2007 at 04:32 PM

OMG ITS SO ANNOYING NOW...

im stressed at this damn media essay, and when i talk in wlm, i sometimes put !... with my dodgy keyboard with F1 straight above the ! i hit the both (fat hands! haha)

i never use the damn f1 button, and if i needed help id ask on here!?

can i turn it off (A)

Thanks


RE: Disable F1 button? by tosikosi on 04-25-2007 at 04:34 PM

i think is not possible to disable F buttons but can i have some help in verification thing answer in my thread please


RE: Disable F1 button? by M73A on 04-25-2007 at 04:56 PM

er.. thanks for the insightful reply. if i could understand your post about verification i may have an idea how to help, but it is barely readable.


RE: Disable F1 button? by NiteMare on 04-25-2007 at 04:58 PM

get a knife, and pop the F1 key off your keyboard, presto, disabled


RE: Disable F1 button? by M73A on 04-25-2007 at 05:01 PM

quote:
Originally posted by NiteMare
get a knife, and pop the F1 key off your keyboard, presto, disabled
lmaonaise!

not very aesthetically pleasing though :(
RE: Disable F1 button? by CookieRevised on 04-26-2007 at 12:24 AM

M73A, I suppose you are writing your essay in Word?

In that case, it is relativly easy to disable it


Method 1: with a macro

This will work for most other keys too (similar things can be done in all other Office programs too, though the macro syntax differs a bit from application to application):

You can make a macro and overwrite the key like that. The macro consists of:

code:
Sub AutoOpen()
    KeyBindings.Add wdKeyCategoryDisable, "", BuildKeyCode(wdKeyF1)
End Sub
Put that into a module (which you need to create/add in the VBA for Word editor: Tools > Macro > Visual Basic Editor > Project (whatever) > Right click > Add > Module). Save the document and turn macro's on (if you didn't already), then  restart Word and reopen the document...


Method 2: simply disable F1 in Word all together

Right Click a toolbar > Change > Keyboard (left bottom button) > Category: 'Window and help' > Command: 'Help' > Select the used key in the list (which is F1) > Remove

Close the dialogs by pressing the Close buttons.


Method 3: external apps

Or you could use an external program like AutoHotKey, which does essentially the same, remapping a key by using a macro.