Making Template Name Show Up in Status Bar

  • Thread starter Thread starter Keith
  • Start date Start date
K

Keith

I have modified a template in PP2002 and saved it as
a .pot and it works fine and it shows up in the slide
design panel, but the name of the template that shows up
in the status bar still shows the template name that this
template was based on. How do I save it so the new
template name appears?
 
Keith, sorry, but we have discussed that oddity before and came up short for
a solution. It seems to only occur in version 2002, as versions 2000 and 97
don't have this problem. A property captures the original template name and
will not turn loose of it. You can see the property in the
File|Properties|Content tab. According to the gurus, that property cannot
even be altered with VBA.

Of course, templates created from a blank file will carry the name you give
it when applied to other files. Sooooo... it seems it's best to create your
templates from blanks by copying the elements of a template you like, not
just renaming it.

You can read our last discussion on the subject here...

http://tinyurl.com/io79
 
It's fixed in PowerPoint 2003. <G>

Robert Lerner said:
Keith, sorry, but we have discussed that oddity before and came up short for
a solution. It seems to only occur in version 2002, as versions 2000 and 97
don't have this problem. A property captures the original template name and
will not turn loose of it. You can see the property in the
File|Properties|Content tab. According to the gurus, that property cannot
even be altered with VBA.

Of course, templates created from a blank file will carry the name you give
it when applied to other files. Sooooo... it seems it's best to create your
templates from blanks by copying the elements of a template you like, not
just renaming it.

You can read our last discussion on the subject here...

http://tinyurl.com/io79
 
That's good to know, but I actually got the new name of a template to stick
in the status bar once. I did what we're saying can't be done in 2002. I
modified an existing template (Business Plan), recolored it, and saved it as
a template with a new name. The new name appears in the status bar.

The problem is, I don't know how I did it. I've tried recreating the process
several times and it will not work.

Oh well.
 
I missed out on the earlier discussion. You can do this without VBA in PPT
2002.

1. Open the modified design template.
2. Open Microsoft Script Editor (Alt+Shift+F11)
3. In the 'Project explorer' double-click 'Pres.xml'
4. In the code window for 'Pres.xml', a similar listing will appear. We are
interested only in the portion which states template="Capsules".

' --------------- Snippet ---------------------
<xml xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
xmlns:oa="urn:schemas-microsoft-com:office:activation">
<p:presentation sizeof="screen" gridspacingx="49152" gridspacingy="49152">
<p:master id="6" slidesn="1C357D2,E26C4180" type="main"
href="master06.htm"
xmlhref="master06.xml" template="Capsules" layout="title_body"
slots="title,body,dateTime,footer,slideNumber">
'--------------- more code --------------
' --------------- Snippet ---------------------

5. Select the text following 'template=' and replace it with the name of the
custom template.
e.g.
' --------------- Snippet ---------------------
<xml xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
xmlns:oa="urn:schemas-microsoft-com:office:activation">
<p:presentation sizeof="screen" gridspacingx="49152" gridspacingy="49152">
<p:master id="6" slidesn="1C357D2,E26C4180" type="main"
href="master06.htm"
xmlhref="master06.xml" template="Bitter Tablets" layout="title_body"
slots="title,body,dateTime,footer,slideNumber">
'--------------- more code --------------
' --------------- Snippet ---------------------
6. Press Save button on the window.
7. Close the Script Editor.
8. Save as design template overwriting the existing one.

Now, whenever you apply the custom design the name 'Bitter Tablets' will
appear in the status bar.
--
Regards
Shyam Pillai

Handout Wizard
http://www.mvps.org/skp/how/
 
How the HECK did you find that??! It works like a charm!

<bowing to the ground>

I'm not worthy!
I'm not worthy!

I'm soooo impressed. Thanks for sharing that. I never would have thought to
check there.

I'm gonna go crawl under a rock now.
 
Robert said:
How the HECK did you find that??! It works like a charm!

<bowing to the ground>

I'm not worthy!
I'm not worthy!

I'm soooo impressed. Thanks for sharing that. I never would have thought to
check there.

I'm gonna go crawl under a rock now.

Don't do that. Shyam's just amazing, that's all there is to it.

Echo
 
Back
Top