#1   Report Post  
Posted to microsoft.public.word.docmanagement
Billy1036fm Billy1036fm is offline
external usenet poster
 
Posts: 2
Default Font effects

I am new to office 2007 and was very used to 2003.

I was able to make text flash in 2003 by format font, effects and then
blinking which made my text flash to stand out.

With 2007 I would like to do the same - can anyone advise how to do this
please - the menu's are so different.

If not possible (which I am sure it is) then how can I stop a flashing text
from blinking that was done in 2003?

Thanks Billy
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Pesach Shelnitz[_2_] Pesach Shelnitz[_2_] is offline
external usenet poster
 
Posts: 277
Default Font effects

Hi Billy,

The text animation feature is no longer supported in the UI in Word 2007,
but you can implement it by selecting text and running a macro such as the
following.

Sub TextEffects()
Dim animationType As String

animationType = InputBox("Type the number of the text effect" _
& vbCrLf & "that you want to apply to the selected text." _
& vbCrLf & "1. Las Vegas lights" _
& vbCrLf & "2. Blinking background" _
& vbCrLf & "3. Sparkle text" _
& vbCrLf & "4. Marching black ants" _
& vbCrLf & "5. Marching red ants" _
& vbCrLf & "6. Shimmer" _
& vbCrLf & "7. None", _
"Text Effects")

With Selection.Font
Select Case animationType
Case "1"
.Animation = wdAnimationLasVegasLights
Case "2"
.Animation = wdAnimationBlinkingBackground
Case "3"
.Animation = wdAnimationSparkleText
Case "4"
.Animation = wdAnimationMarchingBlackAnts
Case "5"
.Animation = wdAnimationMarchingRedAnts
Case "6"
.Animation = wdAnimationShimmer
Case "7"
.Animation = wdAnimationNone
Case Else
MsgBox "No valid number was typed."
End Select
Selection.Collapse Direction:=wdCollapseStart
End With
End Sub

To install this macro, copy the macro to the clipboard, press Alt+F8, type
the name of the macro in "Macro name" box, click "Create," replace the macro
created by the macro that you copied to the clipboard, and close the Visual
Basic Editor. When you want to run it, press Alt+F8, type or select its name,
and press Enter. After you install it, you can also assign it to a shortcut
key.

--
Hope this helps,
Pesach Shelnitz
My Web site: http://makeofficework.com


"Billy1036fm" wrote:

I am new to office 2007 and was very used to 2003.

I was able to make text flash in 2003 by format font, effects and then
blinking which made my text flash to stand out.

With 2007 I would like to do the same - can anyone advise how to do this
please - the menu's are so different.

If not possible (which I am sure it is) then how can I stop a flashing text
from blinking that was done in 2003?

Thanks Billy

  #3   Report Post  
Posted to microsoft.public.word.docmanagement
Pesach Shelnitz[_2_] Pesach Shelnitz[_2_] is offline
external usenet poster
 
Posts: 277
Default Font effects


Hi Billy,

The text animation feature is no longer supported in the UI in Word 2007,
but you can implement it by selecting text and running a macro such as the
following.

Sub TextEffects()
Dim animationType As String

animationType = InputBox("Type the number of the text effect" _
& vbCrLf & "that you want to apply to the selected text." _
& vbCrLf & "1. Las Vegas lights" _
& vbCrLf & "2. Blinking background" _
& vbCrLf & "3. Sparkle text" _
& vbCrLf & "4. Marching black ants" _
& vbCrLf & "5. Marching red ants" _
& vbCrLf & "6. Shimmer" _
& vbCrLf & "7. None", _
"Text Effects")

With Selection.Font
Select Case animationType
Case "1"
.Animation = wdAnimationLasVegasLights
Case "2"
.Animation = wdAnimationBlinkingBackground
Case "3"
.Animation = wdAnimationSparkleText
Case "4"
.Animation = wdAnimationMarchingBlackAnts
Case "5"
.Animation = wdAnimationMarchingRedAnts
Case "6"
.Animation = wdAnimationShimmer
Case "7"
.Animation = wdAnimationNone
Case Else
MsgBox "No valid number was typed."
End Select
Selection.Collapse Direction:=wdCollapseStart
End With
End Sub

To install this macro, copy the macro to the clipboard, press Alt+F8, type
the name of the macro in "Macro name" box, click "Create," replace the macro
created by the macro that you copied to the clipboard, and close the Visual
Basic Editor. When you want to run it, press Alt+F8, type or select its name,
and press Enter. After you install it, you can also assign it to a shortcut
key.

--
Hope this helps,
Pesach Shelnitz
My Web site: http://makeofficework.com


"Billy1036fm" wrote:

I am new to office 2007 and was very used to 2003.

I was able to make text flash in 2003 by format font, effects and then
blinking which made my text flash to stand out.

With 2007 I would like to do the same - can anyone advise how to do this
please - the menu's are so different.

If not possible (which I am sure it is) then how can I stop a flashing text
from blinking that was done in 2003?

Thanks Billy

Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Suggestion - Quick Access to Font Effects RichUE Microsoft Word Help 7 January 26th 09 05:20 PM
Font Effects Word 2007 bs2442 Microsoft Word Help 1 September 11th 08 04:12 PM
all Font effects boxes half-grayed/greened for no reason Raydar Microsoft Word Help 1 September 14th 07 05:13 AM
why every time I exit out of word the font effects is save? bandit Microsoft Word Help 1 June 1st 05 03:43 AM
Troubleshooting 'small caps' effects in font dialog The Scientist Page Layout 1 November 26th 04 11:57 PM


All times are GMT +1. The time now is 06:51 PM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"