How do I delete the timings on a PPP? Not just turn off!!

J

Jorge Rojas

I have searched the help file and Microsoft site but could not find how to
delete the timings of the PPP. The only related information is to turn
timings off but this does not delete them.
 
B

Bill Dilworth

This little macro will remove your timings.

====Code start=======
Sub LikeThePresent()
Dim oSld As Slide

For Each oSld In ActivePresentation.Slides
With oSld.SlideShowTransition
.AdvanceTime = 0#
.AdvanceOnTime = msoFalse
End With
Next oSld

MsgBox "The end of time."

End Sub
====Code end=======

How do I use VBA code in PowerPoint?
http://www.rdpslides.com/pptfaq/FAQ00033.htm


--
Bill Dilworth
A proud member of the Microsoft PPT MVP Team
Users helping fellow users.
http://billdilworth.mvps.org
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
yahoo2@ Please read the PowerPoint FAQ pages.
yahoo. They answer most of our questions.
com www.pptfaq.com
..
 
S

simmom

Hi, Jorge Rojas
As far as I know, timings can't be removed but you can modify the
presentation to ignore them.
1.From the Slide Show menu, choose Set Up Show.
2.In the Advance slides section, choose Manually.
3.Choose OK.
 
J

Jorge Rojas

Bill,

Thank you very much for your help. The macro worked as you recommended.

Jorge
 

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