Share via

Text effects in Microsoft Word 2010

Anonymous
2012-10-17T14:15:28+00:00

How do you turn on "text effects" in Microsoft Word 2010?

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

  1. Anonymous
    2012-10-17T15:00:23+00:00

    "Text Effects" has a new meaning in Word 2010.  If you mean blinking text, marching ants, etc. then used Graham's suggestion.

    If you mean "Text Effects" for Word 2010. Then Home tab>Font>Text Effects (bottem row, third from right)

    10+ people found this answer helpful.
    0 comments No comments

Answer accepted by question author

  1. Anonymous
    2012-10-17T14:28:28+00:00

    There is no built-in method with Word 2010, buy you can do so with a macro

    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

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

    10+ people found this answer helpful.
    0 comments No comments

Answer accepted by question author

  1. Suzanne S Barnhill 277.1K Reputation points MVP Volunteer Moderator
    2012-10-17T15:12:12+00:00

    But  note that the new Word 2010 Text Effects will not be available in documents created and saved in previous versions, only those that are in Word 2010 .docx format. That means that even Word 2007 .docx documents (which will open in Compatibility Mode) can't use them.

    0 comments No comments

2 additional answers

Sort by: Most helpful
  1. Charles Kenyon 166.7K Reputation points Volunteer Moderator
    2014-01-09T10:22:28+00:00

    If you mean Word 2003 text animation effects, 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

    I would also note that if you do find them annoying, 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.

    1 person found this answer helpful.
    0 comments No comments
  2. Anonymous
    2014-02-14T06:37:37+00:00

    Thanks Graham,

    This is really very helpful for users who have MS office 2007, 2010, 2013

    Thanks & Regards,

    Prashant Shirsat

    0 comments No comments