You might also want to think about using vba to add and delete the shape name
text
eg
Sub nameme()
Dim osld As Slide
Dim oshp As Shape
For Each osld In ActivePresentation.Slides
For Each oshp In osld.Shapes
If oshp.HasTextFrame And _
oshp.TextFrame.TextRange = "" Then
oshp.TextFrame.TextRange = "xx" & oshp.Name
End If
Next
Next
End Sub
Sub zap()
Dim osld As Slide
Dim oshp As Shape
Dim stext As String
For Each osld In ActivePresentation.Slides
For Each oshp In osld.Shapes
If oshp.HasTextFrame Then
If Left$(oshp.TextFrame.TextRange, 2) = "xx" Then _
oshp.TextFrame.TextRange = ""
End If
Next
Next
End Sub
--
Amazing PPT Hints, Tips and Tutorials
http://www.PPTAlchemy.co.uk
http://www.technologytrish.co.uk
email john AT technologytrish.co.uk
"JClements" wrote:
> What I have done in the past is add text to my objects to serve as temporary
> "labels" such as A1, A2, etc., for those related to an animation sequence.
> After the animations have been finalized or the presentation is finished, I
> delete out the text.