Don't you know that if you post the code you have it makes it too easy?
Give us a challenge. Make us read your mind. Ok. Just kidding. Thanks for
posting what you have. This should fix your problem:
Sub GoodNumber()
Dim myTextBox As Shape
Set myTextBox = _
ActivePresentation.SlideShowWindow.View.Slide.Shapes _
.AddTextbox(msoTextOrientationHorizontal, 162, 78, 54, 28.875)
myTextBox.TextFrame.WordWrap = msoTrue
With myTextBox.TextFrame.TextRange.ParagraphFormat
.LineRuleWithin = msoTrue
.SpaceWithin = 1
.LineRuleBefore = msoTrue
.SpaceBefore = 0.5
.LineRuleAfter = msoTrue
.SpaceAfter = 0
End With
With myTextBox.TextFrame.TextRange
.Text = "1"
With .Font
.Name = "Arial"
.Size = 18
.Bold = msoFalse
.Italic = msoFalse
.Underline = msoFalse
.Shadow = msoFalse
.Emboss = msoFalse
.BaselineOffset = 0
.AutoRotateNumbers = msoFalse
.Color.SchemeColor = ppForeground
End With
End With
End Sub

Signature
David M. Marcovitz
Microsoft PowerPoint MVP
Director of Graduate Programs in Educational Technology
Loyola College in Maryland
Author of _Powerful PowerPoint for Educators_
http://www.PowerfulPowerPoint.com/
> I am trying to create a presentation with multiple buttons that will
> show different data point on a map when selected. The macro I created
[quoted text clipped - 41 lines]
> End With
> End Sub
MelissaC - 10 Jul 2007 19:10 GMT
I figured if I was going to recieve help I had to make my query as easy as
possible to understand. And it works!!!
Thank you so much!
> Don't you know that if you post the code you have it makes it too easy?
> Give us a challenge. Make us read your mind. Ok. Just kidding. Thanks for
[quoted text clipped - 78 lines]
> > End With
> > End Sub