![]() |
#4
|
|||
|
|||
![]()
This should do it I think (top of head code - not tested.) NOTE as written existing notes will be deleted.
Code:
Sub copyText_to_Notes() Dim osld As Slide Dim oshp As Shape Dim strTitle As String For Each osld In ActivePresentation.Slides If osld.Shapes.HasTitle Then strTitle = osld.Shapes.Title.TextFrame.TextRange End If For Each oshp In osld.NotesPage.Shapes If oshp.Type = msoPlaceholder Then If oshp.PlaceholderFormat.Type = 2 Then oshp.TextFrame.TextRange = strTitle End If End If Next oshp Next osld End Sub INSERT > Module Paste in the code Run (f5) |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Print handouts with notes I entered | kennydude | PowerPoint | 2 | 10-16-2012 05:24 AM |
PPTX > PDF & hyperlink behaviour | Ordained | PowerPoint | 0 | 06-11-2012 05:31 PM |
![]() |
fozzie | PowerPoint | 2 | 03-03-2012 12:45 PM |
Own starting page number when printing handouts | ffmarais | PowerPoint | 1 | 06-27-2011 12:54 AM |
Odd behaviour in formatted cells | furface00 | Excel | 3 | 03-11-2011 08:02 AM |