I think i'm close with this, but when I copy the dotm file to the start folder of another pc, its not working. It appears as if the file is not even opening when I start Word, although it is in the correct start folder as well.
Code:
Sub AutoOpen()
With Application
' \\ Do customization in THIS document
' .CustomizationContext = ThisDocument
' \\ Add keybinding to this document Shorcut: Alt+0
.KeyBindings.Add KeyCode:=BuildKeyCode(wdKeyControl, wdKeyAlt, wdKeyL), _
KeyCategory:=wdKeyCategoryCommand, _
Command:="ChangeFileLinks"
End With
End Sub