Share via

Blinking Text

Anonymous
2010-12-21T17:46:47+00:00

From my Word 2003 I have blinking text in some of my templates.  How can I eliminate the blinking text in Word 2007 documents

Microsoft 365 and Office | Word | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

Answer accepted by question author

Stefan Blom 342.4K Reputation points MVP Volunteer Moderator
2010-12-21T18:26:25+00:00

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.

Was this answer helpful?

1 person found this answer helpful.
0 comments No comments

Answer accepted by question author

Anonymous
2010-12-22T07:22:36+00:00

You can restore the text effects funtionality with a macro e.g.

Sub AnimateFont()

Dim sAnimation As String

If Len(Selection.Range) = 0 Then

    MsgBox "Select text first!", vbCritical, "No Text Selected"

    Exit Sub

End If

sAnimation = InputBox("Which animation? Enter the number: " & vbCr & _

            "   1. Blinking Background" & vbCr & _

            "   2. Las Vegas Lights" & vbCr & _

            "   3. Marching Black Ants" & vbCr & _

            "   4. Marching Red Ants" & vbCr & _

            "   5. Shimmer" & vbCr & _

            "   6. Sparkle Text" & vbCr & _

            "   0. None", "Font animation")

    Select Case sAnimation

        Case 1: Selection.Font.Animation = wdAnimationBlinkingBackground

        Case 2: Selection.Font.Animation = wdAnimationLasVegasLights

        Case 3: Selection.Font.Animation = wdAnimationMarchingBlackAnts

        Case 4: Selection.Font.Animation = wdAnimationMarchingRedAnts

        Case 5: Selection.Font.Animation = wdAnimationShimmer

        Case 6: Selection.Font.Animation = wdAnimationSparkleText

        Case 0: Selection.Font.Animation = wdAnimationNone

        Case Else:

    End Select

End Sub

http://www.gmayor.com/installing_macro.htm

Was this answer helpful?

0 comments No comments

2 additional answers

Sort by: Most helpful
  1. Charles Kenyon 167.7K Reputation points Volunteer Moderator
    2014-01-09T10:48:12+00:00

    The simplest way to turn them off, in any version of Word, is to select the text and press Ctrl+Spacebar to clear font formatting. This will clear other formatting such as bold or Italics as well.

    If you actually want such text, it is not possible through the user interface directly. If you copy text already having one of the animation effects into a Ribbon version, though, it will retain that effect. You can download a document that has samples of each (as well as a template with them as AutoText) from here:

    Animated Text Effects in Ribbon Versions of Word

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2012-04-25T12:44:40+00:00

    Big up

    Was this answer helpful?

    0 comments No comments