Is there a better way?
To print only the notes, on the File menu, click Print. In the Print
dialog box, at the bottom is a "Print what" drop-down list. Use this
list to select notes.
--
Joe Heugly
Brainbench ‘MVP’ for MS PowerPoint
http://www.brainbench.com
Sent via Deja.com http://www.deja.com/
Before you buy.
--
Steve Rindsberg, PowerPoint MVP
PPT FAQ - http://www.rdpslides.com/pptfaq
RnR PPTools - http://www.rdpslides.com/pptools
ZAP! for service bureaus - http://www.rdpslides.com/zap
Richard C. Swarn <dps...@worldnet.att.net> wrote in message
news:0df6tskkvrjeq1k18...@4ax.com...
Kathy
Joe H wrote:
> In article <0df6tskkvrjeq1k18...@4ax.com>,
> Richard Swarn wrote:
> > I want to print out or save to Word ONLY notes for use in rehearsals.
> > (I can't show the Notes on screen while rehearsing). Now, I save the
> > B&W prez to Word as "Notes next to Slides", then delete the entire
> > slide column, leaving the Slide Number and the Notes.
> >
> > Is there a better way?
> >
>
Sub SpitNotesText()
Dim oPresentation As Presentation
Dim oSlides As Slides
Dim oSlide As Slide
Dim NotesText As String
Dim FileNum As Integer
Set oPresentation = ActiveWindow.Presentation
Set oSlides = oPresentation.Slides
For Each oSlide In oSlides
' Comment this out if you don't want the Slide Number added to the text
output
NotesText = NotesText & vbCrLf & "Slide " & oSlide.SlideIndex
' This may not work for some presentations; sometimes the shape numbers
get screwed up and
' Rectangle 3 isn't there or doesn't contain the notes text. Normally
it should work, though.
NotesText = NotesText & vbCrLf & oSlide.NotesPage.Shapes("Rectangle
3").TextFrame.TextRange.Text
Next oSlide
FileNum = FreeFile
' Change the path here if you like:
Open "C:\SlideNotes.TXT" For Output As FileNum
Print #FileNum, NotesText
Close FileNum
End Sub
--
Steve Rindsberg, PowerPoint MVP
PPT FAQ - http://www.rdpslides.com/pptfaq
RnR PPTools - http://www.rdpslides.com/pptools
ZAP! for service bureaus - http://www.rdpslides.com/zap
Kathy Huntzinger <ka...@tsc.com> wrote in message
news:39D370D9...@tsc.com...
On Thu, 28 Sep 2000 11:24:57 -0500, Kathy Huntzinger <ka...@tsc.com>
wrote:
--
Steve Rindsberg, PowerPoint MVP
PPT FAQ - http://www.rdpslides.com/pptfaq
RnR PPTools - http://www.rdpslides.com/pptools
ZAP! for service bureaus - http://www.rdpslides.com/zap
Richard C. Swarn <dps...@worldnet.att.net> wrote in message
news:cg47tsgig505olifm...@4ax.com...
Echo
The thing I posted simply cycles through each slide and grabs the notes text
then eventually writes it all out to a text file.
I like your idea too ... I've used notes pages with just a slide, no text
placeholder, for gazillionyears now. Never occurred to me to do it the
other way 'round. Pays to peek outside the box once in a while, Steve. <g>
Thanks.
--
Steve Rindsberg, PowerPoint MVP
PPT FAQ - http://www.rdpslides.com/pptfaq
RnR PPTools - http://www.rdpslides.com/pptools
ZAP! for service bureaus - http://www.rdpslides.com/zap
Richard C. Swarn <dps...@worldnet.att.net> wrote in message
news:ga7its4a4t2gu81qi...@4ax.com...