A family of Microsoft word processing software products for creating web, email, and print documents.
My bad ... the ACL files are in ~/Library/Preferences/Microsoft/Office 2011
Also here is a VBA routine that copies all of your unformatted AC entries and puts them into a Word document table that can be restored with a second VBA subroutine that I'm finishing up.
Depending on how many AC entries you have, it takes a couple of minutes to run so just wait on it.
Sub autoCorrectBackup()
'Copyright (c) 2011, Richard V. Michaels. All rights reserved.
'You have the right to use it ... please just don't claim that you wrote it!
On Error GoTo ErrMsg
Dim doc As Word.Document
Dim rng As Word.Range
Dim acEnt As Word.AutoCorrectEntry
Dim acEntries As Word.AutoCorrectEntries
Dim mName As String: mName = "Autocorrect Backup"
Word.Documents.Add
With Dialogs.Item(wdDialogFileSaveAs)
.Name = Word.Options.DefaultFilePath(wdDocumentsPath) & ":Autocorrect_Backup_" & Date$
If .Show <> -1 Then
MsgBox "User Aborted Save, Exiting Backup", vbExclamation, mName
Exit Sub
End If
.Execute
End With
Set doc = Word.ActiveDocument
Set rng = Word.Selection.Range
Set acEntries = Word.AutoCorrect.Entries
For Each acEnt In acEntries
rng.Text = acEnt.Name & vbTab & acEnt.value & vbCr
rng.Collapse Word.WdCollapseDirection.wdCollapseEnd
Next acEnt
Set rng = doc.Content
rng.ConvertToTable Separator:=Word.wdSeparateByTabs
doc.Variables.Add Name:="ACbackup", value:="1"
doc.Save
MsgBox "Autocorrect Entry Backup Complete", vbOKOnly, mName
Exit Sub
ErrMsg:
MsgBox "Error: " & Err.Description, vbCritical, mName
End Sub