Could be a language thing. Or it could be that you're not pressing Alt and X
simultaneously. If you press Alt first, you get to the Menu Bar, and X might
then give you some menu command. In my version of Word, View | Footnote does
not have a keyboard shortcut.
--
Suzanne S. Barnhill
Microsoft MVP (Word)

Signature
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
Bonjour,
Dans son message, < Suzanne S. Barnhill > ?crivait :
In this message, < Suzanne S. Barnhill > wrote:
|| Could be a language thing. Or it could be that you're not pressing Alt
and X
|| simultaneously. If you press Alt first, you get to the Menu Bar, and X
might
|| then give you some menu command. In my version of Word, View | Footnote
does
|| not have a keyboard shortcut.
Ah well, I guess I will have to look in the keyboard dialog from the
customization one to look at all the commands to find it... I remember
having to do that for the useful command that is used with, I think,
ALT-CTRL-+ and its opposite... (The one that adds or removes items from
menus). In French versions it is a different command... And I am going to
have to look it up again, I forgot again what it is on my version!

Signature
Salut!
_______________________________________
Jean-Guy Marcil - Word MVP
jmarcilREMOVE@CAPSsympatico.caTHISTOO
Word MVP site: http://www.word.mvps.org
Chad DeMeyer - 01 Jul 2004 18:37 GMT
Jean-Guy,
To avoid having to look at all the commands in the keyboard dialog, you can
get a listing of all the keybindings with the following macro:
Public Sub ShowKeyBindings()
Dim kb As KeyBinding
Selection.InsertAfter KeyBindings.Count & _
" key bindings in context: " & CustomizationContext & vbCr
Selection.Collapse wdCollapseEnd
For Each kb In KeyBindings
Selection.InsertBefore kb.KeyString & vbTab & _
kb.Command & " (" & kb.CommandParameter & ")" & vbCr
Selection.Collapse wdCollapseEnd
Next kb
End Sub
Regards,
Chad DeMeyer
> Bonjour,
>
[quoted text clipped - 15 lines]
> menus). In French versions it is a different command... And I am going to
> have to look it up again, I forgot again what it is on my version!
Jean-Guy Marcil - 02 Jul 2004 02:28 GMT
Bonjour,
Dans son message, < Chad DeMeyer > ?crivait :
In this message, < Chad DeMeyer > wrote:
|| Jean-Guy,
||
|| To avoid having to look at all the commands in the keyboard dialog, you
can
|| get a listing of all the keybindings with the following macro:
||
[quoted text clipped - 11 lines]
|| Next kb
|| End Sub
I maybe wrong (as I am not all that familiar with KeyBindings in VBA), I
believe that this code only lists customized KeyBindings.
When I run it I get:
1 key bindings in context: Normal.dot
Alt+Ctrl+D InsertDateTime ()
But if I run:
Application.ListCommands ListAllCommands:=True
then I get the full list (including all the Add-ins). I think that if you
want only Word's commands, you have to set ListAllCommands to False.
With this I found that in the French version of Word, ALT-X is ALT-C.
Thanks for the idea!

Signature
Salut!
_______________________________________
Jean-Guy Marcil - Word MVP
jmarcilREMOVE@CAPSsympatico.caTHISTOO
Word MVP site: http://www.word.mvps.org
Chad DeMeyer - 06 Jul 2004 22:29 GMT
You're welcome. Thanks for the clarification on what is included in the
KeyBindings collection. I had overlooked the ListCommands method.
Regards,
Chad
> Bonjour,
>
[quoted text clipped - 38 lines]
>
> Thanks for the idea!