Flashing Text in Word 2007?

  • Thread starter Thread starter Julian Griffin
  • Start date Start date
The user interface for this feature (Text Effect tab on Font Dialog) has be
removed from Word2007. It must have conflicted with some new feature.

If you still have Word2003 your can copy text effects from that version into
a Word2007 document (then copy and paste it at other points in that document
or other documents) or you can apply text effects programatically using the
VB Editor:

Sub ScratchMacro()
ActiveDocument.Paragraphs(1).Range.Font.Animation = _
wdAnimationLasVegasLights
End Sub
 
Back
Top