Dec 14, 2002 #1 Fursten Programmer Dec 27, 2000 403 PT Hi, Is it possible to make the slide show of a Powerpoint apresentation start running as soon as one click in the file and open it? Another one: is there any event that will start running as soon as a powerpoint file is opened? thank you.
Hi, Is it possible to make the slide show of a Powerpoint apresentation start running as soon as one click in the file and open it? Another one: is there any event that will start running as soon as a powerpoint file is opened? thank you.
Dec 15, 2002 1 #2 lambuhere1 Programmer May 4, 2002 42 IN One option is to save your presentation file as *.pps file which when opened runs the Power Point Shlide show. If you are coding, You can try the following snippet. With Activepresentation.Slides.Range.SlideShowTransition .EntryEffect = ppEffectDissolve .AdvanceOnTime = msoTrue .AdvanceTime = 5 End With With Activepresentation.SlideShowSettings .ShowType = ppShowTypeKiosk .LoopUntilStopped = msoFalse .RangeType = ppShowAll .AdvanceMode = ppSlideShowUseSlideTimings .Run Do While .Run.View.State = ppSlideShowRunning DoEvents Loop End With Hope this helps. Ram P Upvote 0 Downvote
One option is to save your presentation file as *.pps file which when opened runs the Power Point Shlide show. If you are coding, You can try the following snippet. With Activepresentation.Slides.Range.SlideShowTransition .EntryEffect = ppEffectDissolve .AdvanceOnTime = msoTrue .AdvanceTime = 5 End With With Activepresentation.SlideShowSettings .ShowType = ppShowTypeKiosk .LoopUntilStopped = msoFalse .RangeType = ppShowAll .AdvanceMode = ppSlideShowUseSlideTimings .Run Do While .Run.View.State = ppSlideShowRunning DoEvents Loop End With Hope this helps. Ram P