Thanks,
Jeff
Or, if you send to Word and then select the column with the slides, you can
delete the entire column. (I'd delete the "slide number" column, too.) You
could then select the table and use "convert table to text" if you want only
notes text in a regular Word format as opposed to inside table cells. Make
sure Allow Fast Saves is turned off in Word, and you should end up with a
normal-sized document.
Echo
"Jeff" <jb...@aromatec.com> wrote in message
news:9b71um$3h3$1...@earth.superlink.net...
However, I just tried this: I went to View > Notes and then to File > Send
To > Word and selected "notes next to images" and clicked okay. Word
opened and loaded my images and notes in three columns (first column has
slide number). Then I selected the column that contained the images and
deleted it via Table > Delete > Column. Then I was able to use Table >
Properties > Column/Row to adjust the width of the column and the height of
the row(s) to make best use of the page and reduce "white space". Like I
say, this isn't very elegant, but it works, and was pretty fast. <G>
Sonia Coleman, MS Power Point MVP Team
http://www.soniacoleman.com
Autorun CD Project Creator
http://www.soniacoleman.com/Tutorials/PowerPoint/Autorun_CD.htm
"Jeff" <jb...@aromatec.com> wrote in message
news:9b71um$3h3$1...@earth.superlink.net...
In your PP presentation, select the Tools, Macro, Record New Macro... menu item.
Enter the macro name as sendNotesToWord and press OK.
Press the Stop Recording button.
Select the Tools, Macro, Macros... menu item.
Click sendNotesToWord to select it and press the Edit button.
This will start VBA and place you in the sendNotesToWord macro code.
In VBA, select Tools, References... menu item.
Click the Microsoft Word checkbox to include the Word object library and press OK.
Replace the empty sendNotesToWord macro with the following code, return to PP,
save your presentation, and run the macro.
Option Explicit
Sub sendNotesToWord()
Dim wrdApp As Word.Application
Dim doc As Word.Document
Dim intSaveView As Integer
Dim i As Integer
Set wrdApp = New Word.Application
Set doc = wrdApp.Documents.Add
wrdApp.Visible = True
intSaveView = ActiveWindow.ViewType
For i = 1 To ActiveWindow.Presentation.Slides.Count
ActiveWindow.View.GotoSlide i
ActiveWindow.ViewType = ppViewSlide
doc.Range.InsertAfter "Slide " & i & ": "
doc.Range.InsertAfter _
ActiveWindow.Selection.SlideRange.Shapes(1).TextFrame.TextRange.Text
& vbCr & vbCr
ActiveWindow.ViewType = ppViewNotesPage
doc.Range.InsertAfter _
ActiveWindow.Selection.SlideRange.Shapes(2).TextFrame.TextRange.Text
doc.Range.InsertAfter vbCr & vbCr & "-----" & vbCr & vbCr
Next i
ActiveWindow.ViewType = intSaveView
End Sub
Sam Barrett, MTL Systems, Inc., mailto:s...@mtl.com
Brainbench MVP, http://www.brainbench.com
And the things that you have heard...commit these to faithful
men who will be able to teach others also. 2 Timothy 2:2
Echo
.
Echo
"Sonia" <so...@nowhere.com> wrote in message
news:u#f0akCxAHA.1748@tkmsftngp03...
"Echo S" <ec...@indy.net> wrote in message
news:ek0YCcExAHA.1844@tkmsftngp05...