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

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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.
 
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
..
 
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.
 
Back
Top