how do i get my text to follow the autoshape?

  • Thread starter Graphically Challenged
  • Start date
G

Graphically Challenged

If I select the banner autoshape, how do I get the text to follow the curves
of the banner when I add text to the shape?
 
H

Héctor Miguel

hi (...), ?????
If I select the banner autoshape, how do I get the text to follow the curves of the banner when I add text to the shape?

how about embedding a WordArt object and use the '_change' event on that worksheet code module ? (i.e.)

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$A$1" Then
Me.Shapes("wordart 1").TextEffect.Text = [a1].Text
End If
End Sub

hth,
hector.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top