A family of Microsoft word processing software products for creating web, email, and print documents.
In Word 2007, text effects aren't supported in the user interface (the feature was restored in Word 2010), but you can clear them by using a macro. For example, the following line of code deletes the effects from the selection:
Selection.Range.Font.Animation = wdAnimationNone
To clear the setting from a style, use the following syntax:
ActiveDocument.Styles("stylename").Font.Animation = wdAnimationNone
For more information on macros, see http://www.gmayor.com/installing_macro.htm.