Consulting

Results 1 to 3 of 3

Thread: Adding Glow to Text

  1. #1

    Adding Glow to Text

    I am having trouble figuring out how to add glow to text within a certain text box. For example, I have a text box named "Header" on my slide and I want to add a black glow around the text. Unfortunately, ".Glow" is not an option. This is how I have the text formatted so far:

       With ActiveWindow.Selection.SlideRange.Shapes("Header").TextFrame.TextRange.Font
       
        .Size = 40
        .Name = "Aharoni"
        .Bold = False
        .Italic = False
        .Shadow = True
    
    
       End With
    Anyone have any ideas?

    Thanks!

    C

  2. #2
    VBAX Master
    Joined
    Feb 2007
    Posts
    2,094
    Location
    You are using legacy code from 2003.

    You need to use the TextFrame2 object instead of TextFrame to use the new features like Glow.

    NOTE Shadow=True will fail if you do because it is also legacy code. You will have to use the new Shadow Properties. .Shadow.Visible=True MIGHT do what you need.
    John Wilson
    Microsoft PowerPoint MVP
    Amazing Free PowerPoint Tutorials
    http://www.pptalchemy.co.uk/powerpoi...tutorials.html

  3. #3
    That does EXACTLY what I need. Thanks!!!

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •