Group: microsoft.public.word.vba.general
From: =?Utf-8?B?SnVzdFNvbWVHdXk=?=
Date: Friday, April 04, 2008 5:49 PM
Subject: macro to toggle Autotext Menu on & off

Seems like it should go something like this - but it doesn't work:

Sub ViewAutotextMenu()
IF CommandBars("AutoText").Visible = True
Then CommandBars("AutoText").Visible = False
End If
if CommandBars("AutoText").Visible = False
Then CommandBars("AutoText").Visible = True
End If
End Sub