Printing Handouts with timings

G

Guest

Hi, I have rehearsed some timings for my presentation and I would like to be able to print out a Handout (with for example 4 slides per page) that includes the timings that have been recorded for each slide - maybe with each timing appearing just underneath its corresponding time. Is this possible?
 
B

B

)))))))))))))))Begin Code(((((((((((((((((
Option Explicit

Sub Time2Notes()

Dim SldNum As Integer
Dim AdvTime As Single
Dim TimeDisplay As String
Dim h As Integer, m As Integer, s As Single

For SldNum = 1 To ActivePresentation.Slides.Count
AdvTime = ActivePresentation.Slides(SldNum). _
SlideShowTransition.AdvanceTime

If ActivePresentation.Slides(SldNum). _
SlideShowTransition.AdvanceOnTime = False Then
TimeDisplay = _
"Automatic Timed Transition is NOT ACTIVE"
GoTo Jump
Else
TimeDisplay = _
"Automatic Timed Transition is set for "
End If

h = Int(AdvTime / 3600)
m = Int((AdvTime - (h * 3600)) / 60)
s = Round(AdvTime - ((m * 60) + (h * 3600)), 2)


If h > 0 Then TimeDisplay = TimeDisplay & _
Format(h, "#0") & ":" & Format(m, "00")
If m * h = 0 Then TimeDisplay = TimeDisplay & "0"
TimeDisplay = TimeDisplay & ":" & Format(s, "00.##")


Jump:
With ActivePresentation.Slides(SldNum).NotesPage. _
Shapes(2).TextFrame.TextRange
.Text = TimeDisplay & vbCr & .Text
End With
Next SldNum
End Sub
)))))))))))))))End of Code(((((((((((((((((


Watch for NG text wrap.

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

Change org to com to defuse anti-spam,
ant-virus, anti-nuisance misdirection.
..
..
This can not be done natively within PowerPoint. Do you know VBA? Oh,
well, than I suppose the next best thing would be to send the slides to
Word, then manually type the timings under the slide or in the notes
section.

Or, if you feel adventurous, enter this code as a macro and run the macro,
then export to Word with notes.

Jacqueline Callanan said:
Hi, I have rehearsed some timings for my presentation and I would like to
be able to print out a Handout (with for example 4 slides per page) that
includes the timings that have been recorded for each slide - maybe with
each timing appearing just underneath its corresponding time. Is this
possible?
 
B

B

That's the first time spell check completely wiped out what I had typed at
the top. Well it probably knows best, but I'll repeat it anyway.

What I said was, that no, this is not something that PowerPoint can do
natively. The timings can be placed in the notes section (either manually
or with the following code) and the presentation then sent to MS Word for
printing with notes.


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

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

Guest

Many thanks for your assistance. I wonder would you be able to do one other thing for me please? I seem to have accidentially included my email address in my original note and it is also included in your two responses. I have received a number of emails with viruses today as a result. Would you be able to remove my address from these 3 notes please?
 
E

Echo S

Jacqueline said:
Many thanks for your assistance. I wonder would you be able to do one other thing for me please? I seem to have accidentially included my email address in my original note and it is also included in your two responses. I have received a number of emails with viruses today as a result. Would you be able to remove my address from these 3 notes please?

Unfortunately we have no way to do that Jacqueline. Your posts are also
already archived by Google Groups, so removing them here won't really
help much anyway.

You might want to consider getting something like Mailwasher. It's free,
and is good at helping eliminate spam. http://www.mailwasher.net/

I finally had to munge my email address after years and years of using
it on Usenet with only rare problems. The past few months have been just
atrocious, though.
 
J

John Langhans [MSFT]

[CRITICAL UPDATE - Anyone using Office 2003 should install the critical
update as soon as possible. From PowerPoint, choose "Help -> Check for
Updates".]

Hello,

PowerPoint doesn't provide the functionality that you are looking for and
even the workarounds (not the exact end result you're looking for) would
require resorting to VBA or add-ins.

If you (or anyone else reading this message) think that it's important that
PowerPoint provide this kind of functionality (without having to resort to
VBA or 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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top