Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

How do you create scrolling marquee text in Word?

70 views
Skip to first unread message

TheTraveler

unread,
Apr 8, 2010, 10:01:01 PM4/8/10
to
This used to be available in versions up to 07. Is there a way to recreate
this feature? I read somewhere that is was removed because some found it
annoying. Is there any help for me? I need it for a specific application.

--
TheTraveler

Stefan Blom

unread,
Apr 9, 2010, 1:45:13 PM4/9/10
to
In Word 2007, the only way to create text effects is via a macro. Ask in a
programming newsgroup such as microsoft.public.word.vba.general.

--
Stefan Blom
Microsoft Word MVP

"TheTraveler" <TheTr...@discussions.microsoft.com> wrote in message
news:435B6A12-B905-48E7...@microsoft.com...

Graham Mayor

unread,
Apr 10, 2010, 2:01:02 AM4/10/10
to
Text effects? I'm glad someone knew what he meant :)

I posted the following macro recently, for use in Word 2007

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

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>


"Stefan Blom" <Stefa...@discussions.microsoft.com> wrote in message
news:esFzWvA2...@TK2MSFTNGP05.phx.gbl...

Stefan Blom

unread,
Apr 10, 2010, 7:27:38 AM4/10/10
to
I never remember the official name for those things, since I never use them.
The Font dialog box of Word 2003 is of no help, either: the tab says "Text
Effects" while the box on that tab is labeled "Animation."

--
Stefan Blom
Microsoft Word MVP

"Graham Mayor" <gma...@REMOVETHISmvps.org> wrote in message
news:%239310MH...@TK2MSFTNGP06.phx.gbl...

0 new messages