Each object on a slide is given a number and a text name.
You can find the name of an object easily by using one of the gadgets in the
PPTools collection. (
www.pptools.com) The Object Info button will tell you
both.
You may want to rename the shape object (the textbox) to something
different. This is done for 1) easy reference, and 2) to keep the object
from changing names should the slide be copied.
This is done easily by using this little macro (add to the VBA module,
select a shape in the slide edit window, click on the run icon in the vbe):
Sub Rename()
Dim oShp As Shape
Set oShp = Windows(1).Selection.ShapeRange(1)
oShp.Name = InputBox("Enter new name", _
"Shape Name", oShp.Name)
End Sub
--
Bill Dilworth
A proud member of the Microsoft PPT MVP Team
Users helping fellow users.
http://billdilworth.mvps.org
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
vestprog2@ Please read the PowerPoint FAQ pages.
yahoo. They answer most of our questions.
com
www.pptfaq.com
..