Welcome to Windows Help!
FAQFAQ    SearchSearch      ProfileProfile    Private MessagesPrivate Messages   Log inLog in

A macro to call up the SpeakerNotes master in PP

 
   Windows Help (Home) -> Microsoft Powerpoint RSS
Next:  Removing autonumbering from headings in TOC but k..  
Author Message
chant007

External


Since: Jul 21, 2009
Posts: 1



(Msg. 1) Posted: Tue Jul 21, 2009 2:21 am
Post subject: A macro to call up the SpeakerNotes master in PP
Archived from groups: microsoft>public>powerpoint (more info?)

I need a simple PowerPoint macro that will call up the SpeakerNotes master
and format the text to bold 16 point.

Ken Chant

 >> Stay informed about: A macro to call up the SpeakerNotes master in PP 
Back to top
Login to vote
Steve Rindsberg

External


Since: Nov 8, 2008
Posts: 108



(Msg. 2) Posted: Tue Jul 21, 2009 10:43 am
Post subject: Re: A macro to call up the SpeakerNotes master in PP
Archived from groups: per prev. post (more info?)

In article , Chant007
wrote:
> I need a simple PowerPoint macro that will call up the SpeakerNotes master
> and format the text to bold 16 point.

This should do it:

Sub TryThis()
Dim oSh As Shape
For Each oSh In ActivePresentation.NotesMaster.Shapes
If oSh.PlaceholderFormat.Type = ppPlaceholderBody Then
Exit For ' found it
End If
Next
If Not oSh Is Nothing Then
With oSh.TextFrame.TextRange.Font
.Size = 16
.Bold = True
End With
End If
End Sub


==============================
PPT Frequently Asked Questions
[URL="http://www.pptfaq.com/"]http://www.pptfaq.com/[/URL]

PPTools add-ins for PowerPoint
[URL="http://www.pptools.com/"]http://www.pptools.com/[/URL]

Don't Miss the PPTLive User Conference! Atlanta | Oct 11-14

 >> Stay informed about: A macro to call up the SpeakerNotes master in PP 
Back to top
Login to vote
Display posts from previous:   
Related Topics:
Modifying one level (in the Master) without changing the o.. - In the Master Slide, in the Object Area box, I want the first paragraph to have no indents. Underneath that paragraph, I want bulleted paragraphs, but I want the bullet to have no indent, but I want a hanging indent for the paragraph. I want it to..

Macro - Is Macro in power point is same as in Excel

Text Addition/Removal Macro - Wow, you guys are smart so I'm sure this question will be a piece of cake. I'm trying to write a ppt macro (Windows, Powerpoint 2003) to automatically step through all pages of the document, examine all text fields (titles, text boxes, all bullets in...

Power point 2007 macro to move an object - I am trying to work with power point. I have a meter (simple, with a needle in the middle to move left or right). Then, I have a selector with 8 prime function. Each function have 3 sub-functions. Example: Function: Weather. Sub Function: good, bad,...

Macro to udpate and dislpay file path before save? - Hi, I've very new to macros, and really need some help. Does anyone know how to make this macro (from Microsoft's knowlegde base) run automatically before the presentation is saved? Sub UpdatePath() ' Macro to add the path and file name to eac...
   Windows Help (Home) -> Microsoft Powerpoint All times are: Pacific Time (US & Canada)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You can edit your posts in this forum
You can delete your posts in this forum
You can vote in polls in this forum



[ Contact us | Terms of Service/Privacy Policy ]