View Single Post
  #9   Report Post  
Posted to microsoft.public.word.docmanagement
Greg Maxey[_2_] Greg Maxey[_2_] is offline
external usenet poster
 
Posts: 668
Default HOW TO MAKE BLINKING WORDS IN WORD?

Option Explicit
Sub AT1()
Selection.Font.Animation = wdAnimationBlinkingBackground
End Sub
Sub AT2()
Selection.Font.Animation = wdAnimationLasVegasLights
End Sub
Sub AT3()
Selection.Font.Animation = wdAnimationMarchingBlackAnts
End Sub
Sub AT4()
Selection.Font.Animation = wdAnimationMarchingRedAnts
End Sub
Sub AT5()
Selection.Font.Animation = wdAnimationShimmer
End Sub
Sub AT6()
Selection.Font.Animation = wdAnimationSparkleText
End Sub
Sub AT7()
Selection.Font.Animation = wdAnimationNone
End Sub




Bod wrote:
What about all the other text effects? Las Vegas lights, marching
ants, etc? I looked in the new, frustratingly inane, talking help,
and it referred to "text effects" as the emboss, strikethrough
dialogue - referring to a different set of options under the name of
what is no longer available, rather than just saying "we removed this
functionality"?

"Graham Mayor" wrote:

The short answer is no.
In Word 2003 and earlier you can format font ext teffects
blinking background, which is as near as Word will allow.
In Word 2007 the command seems to have been removed from the dialog,
but you can still add the effect by macro

Sub Blink()
Selection.Font.Animation = wdAnimationBlinkingBackground
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



ijuabraham wrote:
when we prepare a document in word or in execl, i need some words or
sentence must be blinking. is it possible or not?