PC Review


Reply
Thread Tools Rate Thread

How to import Speaker Notes from a file to an existing presentaiton

 
 
=?Utf-8?B?UmFscGg=?=
Guest
Posts: n/a
 
      12th Dec 2003
Hye,

I have a presentation in ppt, I would like to add speaker notes (from an txt or doc files),
any idea how I can import the speaker notes file into the my ppt presentation

Otherwise, I will have to copy/paste from a slide to another.

Cheers,

Ralph

 
Reply With Quote
 
 
 
 
John Langhans [MSFT]
Guest
Posts: n/a
 
      12th Dec 2003
[CRITICAL UPDATE - If you are using Office 2003, you should install this
update as soon as possible. From PowerPoint, choose "Help -> Check for
Updates".]

Hello Ralph,

PowerPoint allows you to exports notes text, but text import is only
provided for slide titles and bulleted lists.

If you (or anyone else reading this message) think that PowerPoint should
provide some kind of interoperability between notes pages text and other
text files or text editors (without have to resort to VBA or 3rd party
add-ins), don't forget to send your feedback (in YOUR OWN WORDS, please) to
Microsoft at:

http://register.microsoft.com/mswish/suggestion.asp

As with all product suggestions, it's important that you not just state
your wish but also WHY it is important to you that your product suggestion
be implemented by Microsoft. Microsoft receives thousands of product
suggestions every day and we read each one but, in any given product
development cycle, there are only sufficient resources to address the ones
that are most important to our customers so take the extra time to state
your case as clearly and completely as possible.

IMPORTANT: Each submission should be a single suggestion (not a list of
suggestions)

John Langhans
Microsoft Corporation
Supportability Program Manager
Microsoft Office PowerPoint for Windows
Microsoft Office Picture Manager for Windows

For FAQ's, highlights and top issues, visit the Microsoft PowerPoint
support center at: http://support.microsoft.com/default.aspx?pr=ppt
Search the Microsoft Knowledge Base at:
http://support.microsoft.com/default.aspx?pr=kbhowto

This posting is provided "AS IS" with no warranties, and confers no rights.
Use of any included script samples are subject to the terms specified at
http://www.microsoft.com/info/cpyright.htm

 
Reply With Quote
 
B
Guest
Posts: n/a
 
      13th Dec 2003
You could do this with some VBA code, but writing the code for just a small
presentation would take longer than just cutting and pasting from Word to
PowerPoint.

Just how many slides /notes are we talking about here?

B
===============
Please spend a few minutes checking out www.pptfaq.com This link will
answer most of our questions, before you think to ask them.

Change org to com to defuse anti-spam, ant-virus, anti-nuisance
misdirection.
"Ralph" <(E-Mail Removed)> wrote in message
news:51023ADD-9CF3-4CC5-8229-(E-Mail Removed)...
> Hye,
>
> I have a presentation in ppt, I would like to add speaker notes (from an

txt or doc files),
> any idea how I can import the speaker notes file into the my ppt

presentation
>
> Otherwise, I will have to copy/paste from a slide to another.
>
> Cheers,
>
> Ralph
>



 
Reply With Quote
 
B
Guest
Posts: n/a
 
      13th Dec 2003
On second thought ...
here is some code that may help you.

There are 3 steps in this solution for adding notes to your slides pages
from a text file---

Step 1 - format your text file
- at the beginning of each section to be placed into a slide, place a new
line of text beginning with the following three symbols, '~!~' (without the
quotes.)
- optionally, place the target slide number after, but on the same line
- save file as a 'text only' or .TXT file.

Step 2 - create the macro
- open you presentation (or better yet, a copy of your presentation)
- open the VBE window by pressing Alt + F11 or by clicking Tools | Macro |
Visual Basic Editor
- underneath the line that reads Option explicit (if it appears), click to
position the cursor
- Paste all the code between the following lines
-----------------------------------
Public Sub InsertNotesFromTextFile()
Dim FileName As String
Dim Dummy As String
Dim SldNum As Integer
FileName = InputBox("Source File?" & _
"(Full path and name)--", _
"Text Source", "")
Open FileName For Input As #1
Do While Not (EOF(1))
Input #1, Dummy
If Left(Dummy, 3) = "~!~" Then
Dummy = Right(Dummy, _
Len(Dummy) - 3) & " "
If IsNumeric(Dummy) Then
SldNum = Val(Dummy)
Else
SldNum = SldNum + 1
End If
Else
If SldNum > ActivePresentation. _
Slides.Count Then
MsgBox "Text file reference " & _
"to unknown slide " & SldNum & _
". Imported text will be " & _
"placed at the end of current " & _
" notes on the last slide, #" & _
ActivePresentation.Slides.Count, _
vbCritical + vbOKOnly, "ERROR"
SldNum = ActivePresentation.Slides.Count
End If
With ActivePresentation.Slides(SldNum). _
NotesPage.Shapes(2).TextFrame.TextRange
..Text = .Text & vbCr & Dummy
End With
End If
Loop
Close #1
End Sub
-----------------------------------
- close the VBE window

Step 3 - Run the macro
- click Tools | Macro | Macros ... | InsertNotesFromTextFile | Run
- enter the full path and name of the file



I know the code is not pretty, but I compressed it to avoid NewsGroup text
wrap. I should work unless something ugly happens. If you have trouble
with this, either post back to the group with your e-mail (anti-spammed, of
course) or e-mail me directly.

B
===============
Change org to com to defuse anti-spam, ant-virus, anti-nuisance
misdirection.


"B" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> You could do this with some VBA code, but writing the code for just a

small
> presentation would take longer than just cutting and pasting from Word to
> PowerPoint.
>
> Just how many slides /notes are we talking about here?
>
> B
> ===============
> Please spend a few minutes checking out www.pptfaq.com This link will
> answer most of our questions, before you think to ask them.
>
> Change org to com to defuse anti-spam, ant-virus, anti-nuisance
> misdirection.
> "Ralph" <(E-Mail Removed)> wrote in message
> news:51023ADD-9CF3-4CC5-8229-(E-Mail Removed)...
> > Hye,
> >
> > I have a presentation in ppt, I would like to add speaker notes (from an

> txt or doc files),
> > any idea how I can import the speaker notes file into the my ppt

> presentation
> >
> > Otherwise, I will have to copy/paste from a slide to another.
> >
> > Cheers,
> >
> > Ralph
> >

>
>



 
Reply With Quote
 
=?Utf-8?B?UmFscGg=?=
Guest
Posts: n/a
 
      17th Dec 2003
Thanks, great work "B", it works
I have some additional remarks
In the script, I made some change, that can help some other user

Change 1 : I erased the first "." from:
.Text = .Text & vbCr & Dummy

Change 2:
I still have one problem to fix : when parsing the file, it replaces commas found in text file with line feeds in speaker notes, not sure why

Change 3: just included this for others who are interested, to use B's script to remove notes, simply change line above to
.Text = "

Thanks again.
 
Reply With Quote
 
Steve Rindsberg
Guest
Posts: n/a
 
      17th Dec 2003
> Change 2:
> I still have one problem to fix : when parsing the file, it replaces

commas found in text file with line feeds in speaker notes, not sure why;

Depending on how you read a text file in VB/VBA, it may treat commas as
record delimiters. Instead of getting a line at a time, you get a line up
to a comma or line ending.




 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
2 slides incl. speaker notes on one page (modify notes master) Hannes Microsoft Powerpoint 2 7th Jun 2009 03:38 PM
how do i import data from an existing file on to another existing =?Utf-8?B?ZmF2cmVhbHVz?= Microsoft Access 2 12th Oct 2006 07:47 AM
Can you send a powerpoint file without the speaker notes? =?Utf-8?B?U3VzYW4=?= Microsoft Powerpoint 2 26th Apr 2006 05:30 PM
HOW DO I SET UP SPEAKER NOTES VISIBLE TO SPEAKER ONLY & NOT TO AUD =?Utf-8?B?R0c=?= Microsoft Powerpoint 1 19th Aug 2005 08:00 PM
import speaker notes from Word TO PowerPoint dan Microsoft Powerpoint 2 22nd Jun 2004 06:38 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 02:07 AM.