I don't think you can designate a text box to be a placeholder. Instead,
I think you will have to re-apply the slide layout to the slide. This
will bring back the deleted placeholder. Then you can paste the text from
the fake title into the placeholder.
You could probably do these steps with VBA. Let's see...Something like
this:
myLayout = ActiveWindow.Selection.SlideRange.Layout
ActiveWindow.Selection.SlideRange.Layout = myLayout
will reapply the current layout to the current slide.
Then you could add something like this to put the text from the selected
text box into shape 1, which should be the title area:
ActiveWindow.Selection.SlideRange.Shapes(1).TextFrame. _
TextRange.Text = _
ActiveWindow.Selection.ShapeRange.TextFrame.TextRange.Text
Finally, you can delete the selected shape:
ActiveWindow.Selection.ShapeRange.Delete
This works in principle, but it does not error checking, so there are
lots of conditions where it will crash and burn (such as trying to use
this with a blank slide type or without first selecting a shape.
--David

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/
"John Michl" <waxwing1@gmail.com> wrote in news:1161966851.469188.23470
@i42g2000cwa.googlegroups.com:
> I have a series of slides where the original text placeholder was
> deleted and a new text box added which "looks" like a title but doesn't
[quoted text clipped - 8 lines]
>
> - John
John Michl - 27 Oct 2006 18:23 GMT
Thanks, David. I'll give it a try. I plan on adding to the code to do
some formatting so I've got a bit of work ahead. I can handle the
formatting which will involve finding a carriage return in the text,
formatting everything to the left one way, everything to the right
another way, adding tabs, resizing the box, etc. Your info helps me
with the title portion. (Now if I could only get the people that send
these individual slides to use the template!!
- John
> I don't think you can designate a text box to be a placeholder. Instead,
> I think you will have to re-apply the slide layout to the slide. This
[quoted text clipped - 48 lines]
> >
> > - John
David M. Marcovitz - 27 Oct 2006 18:47 GMT
I'm glad I could help, but I'm sorry that the DopeSlap method is not
supported by the current object model:-)
--David

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/
> Thanks, David. I'll give it a try. I plan on adding to the code to
> do some formatting so I've got a bit of work ahead. I can handle the
[quoted text clipped - 59 lines]
>> >
>> > - John
Steve Rindsberg - 28 Oct 2006 05:56 GMT
> I'm glad I could help, but I'm sorry that the DopeSlap method is not
> supported by the current object model:-)
There's a rumor that the next version will support
Application.Parent.Parent.Head.Upside.Whack
-----------------------------------------
Steve Rindsberg, PPT MVP
PPT FAQ: www.pptfaq.com
PPTools: www.pptools.com
================================================