![]() |
|
|||||||
|
|
Thread Tools | Display Modes |
|
#2
|
|||
|
|||
|
Maybe .... (Not tested)
Code:
Sub switchNotes()
Dim oTarget As Presentation
Dim oSource As Presentation
Dim i As Integer
On Error Resume Next
Set oTarget = Presentations("TEST2.pptx")
Set oSource = Presentations("TEST1.pptx")
For i = 1 To oSource.Slides.Count
oSource.Slides(i).NotesPage.Shapes(2) _
.TextFrame.TextRange.Copy
oTarget.Slides(i).NotesPage.Shapes(2) _
.TextFrame.TextRange.Paste
Next i
End Sub
|
| Tags |
| vba code |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Change "Presenter View" layout, to put speaker Notes pane on top? | Kerumbo | PowerPoint | 2 | 05-30-2019 05:15 AM |
| Copy a range in Excel to the notes of a PPT presentation | jeffreybrown | PowerPoint | 1 | 01-25-2018 05:28 AM |
Formatting Notes for Use in Presenter View
|
GBA | PowerPoint | 2 | 07-17-2015 12:11 PM |
| See more notes in Presenter's View | lawlsh | PowerPoint | 0 | 05-01-2013 07:53 PM |
Lost notes formatting in Presenter View
|
c_rlucas | PowerPoint | 1 | 03-30-2012 12:41 AM |