1. open a word document
  2. press alt+f8
  3. in the “macros in:” combobox, select word commands
  4. find and select fileSave
  5. in the “macros in:” combobox, select your current document
  6. click on create This opens the Visual Basic Editor.

Here is the default script, just in case you delete it.

Sub FileSave()
'
' FileSave Macro
' Saves the active document or template
'
    ActiveDocument.Save
 
End Sub

The document has to be a .dotm file to work with code. It’s a quite easy understandable language.