PowerPoint should tell me the total time of my slideshow in sec.

J

James E.

I would like to have a place on powerpoint that would let me know the total
length of my slideshow as I work on it, create transistions, etc.

For example, if I'm trying to stay under 10 minutes, I should be able to
tell that if I delete "X" amount of pictures or shorten their transition
times, when I've gotten my slideshow under that mark.

I would like a clock that can be placed in the corner that auto updates the
total time of my slideshow after every adjustment.

----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the "I
Agree" button in the message pane. If you do not see the button, follow this
link to open the suggestion in the Microsoft Web-based Newsreader and then
click "I Agree" in the message pane.

http://www.microsoft.com/office/com...2-16fd3886b5d3&dg=microsoft.public.powerpoint
 
J

Jean-Pierre FORESTIER

Here is a short macro for that

Sub DureeTotale()

Duree = 0
For Each dia In ActivePresentation.Slides
Duree = Duree + dia.SlideShowTransition.AdvanceTime
Next
Duree = Round(Duree)
Minutes = Int(Duree / 60)
Secondes = Duree Mod 60
MsgBox "Durée totale:" & Minutes & " minutes et " & Secondes & "secondes"

End Sub
You can change french to english! ie: Durée totale = total lenght
--
Jean-Pierre FORESTIER Microsoft MVP PowerPoint
Auteur de PowerPoint 2002 chez Micro Application
James E. said:
I would like to have a place on powerpoint that would let me know the total
length of my slideshow as I work on it, create transistions, etc.

For example, if I'm trying to stay under 10 minutes, I should be able to
tell that if I delete "X" amount of pictures or shorten their transition
times, when I've gotten my slideshow under that mark.

I would like a clock that can be placed in the corner that auto updates the
total time of my slideshow after every adjustment.

----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the "I
Agree" button in the message pane. If you do not see the button, follow this
link to open the suggestion in the Microsoft Web-based Newsreader and then
click "I Agree" in the message pane.
http://www.microsoft.com/office/community/en-us/default.mspx?mid=5a972304-6d
ab-420b-bb22-16fd3886b5d3&dg=microsoft.public.powerpoint
 
Top