In that case:
Code:
Public Sub FileSave()
'Auto Save macro
If ActiveDocument.Path = "" Then
Application.Dialogs(wdDialogFileSaveAs).Show
Else
ActiveDocument.Save
End If
DoEvents
Application.OnTime When:=Now + TimeValue("00:10:00"), Name:="FileSave"
End Sub