G
googlequestions
I have what is hopefully an easy question. Using PowerPoint 2002 I am
attempting to design a series of templates into PowerPoint using
macros so that a person can click a button and change the slide layout
to whichever of the templates they need. I am using 4 layouts listed
under the "Other Layouts" section and one from the "Text Layouts"
section. My problem is the font size for the 4 "Other Layouts" keeps
appearing smaller than the "Text Layout". The Master Slide is set to
20-point, but the 4 keep appearing as 18-point.
My code only one line, each associated with a single button:
ActiveWindow.Selection.SlideRange.Layout = ppLayoutTextAndObject
End Sub
ActiveWindow.Selection.SlideRange.Layout = ppLayoutTextOverObject
End Sub
ActiveWindow.Selection.SlideRange.Layout = ppLayoutObjectAndText
End Sub
ActiveWindow.Selection.SlideRange.Layout = ppLayoutObjectOverText
End Sub
ActiveWindow.Selection.SlideRange.Layout = ppLayoutText
End Sub
How can I get the "ppLayoutText" to have the same font size as the
others?
Thanks
attempting to design a series of templates into PowerPoint using
macros so that a person can click a button and change the slide layout
to whichever of the templates they need. I am using 4 layouts listed
under the "Other Layouts" section and one from the "Text Layouts"
section. My problem is the font size for the 4 "Other Layouts" keeps
appearing smaller than the "Text Layout". The Master Slide is set to
20-point, but the 4 keep appearing as 18-point.
My code only one line, each associated with a single button:
ActiveWindow.Selection.SlideRange.Layout = ppLayoutTextAndObject
End Sub
ActiveWindow.Selection.SlideRange.Layout = ppLayoutTextOverObject
End Sub
ActiveWindow.Selection.SlideRange.Layout = ppLayoutObjectAndText
End Sub
ActiveWindow.Selection.SlideRange.Layout = ppLayoutObjectOverText
End Sub
ActiveWindow.Selection.SlideRange.Layout = ppLayoutText
End Sub
How can I get the "ppLayoutText" to have the same font size as the
others?
Thanks