Thread: [Solved] Auto save macro
View Single Post
 
Old 10-25-2017, 08:26 AM
brent chadwick brent chadwick is offline Windows 8 Office 2013
Advanced Beginner
 
Join Date: Mar 2015
Posts: 86
brent chadwick is on a distinguished road
Default

FYI you cannot override the Command+S shortcut on a Mac. So I did another simple macro that I trigger with the Ctrl+S shortcut. I think I can remember this combo.

Code:
Sub Save2()
'Extra Save macro
ActiveDocument.Save
Application.StatusBar = "Brent Saved: " & ActiveDocument.Name
End Sub
Reply With Quote