Presenter view not running after running macro in powerpoint 2007

R

rich2764

I have created the following macro to run one slideshow seamlessly into
another

Presentations.Open FileName:="c:\slideshow1\1_2.pptm", ReadOnly:=msoFalse
Windows.Item(Index:=2).Activate
ActivePresentation.Close
With ActivePresentation.SlideShowSettings
.ShowType = ppShowTypeSpeaker
.LoopUntilStopped = msoTrue
.ShowWithNarration = msoTrue
.ShowWithAnimation = msoTrue
.RangeType = ppShowAll
.AdvanceMode = ppSlideShowUseSlideTimings
.PointerColor.SchemeColor = ppForeground
.Run
End With
SlideShowWindows(Index:=2).View.Exit

but for some reason the presenter view does not work after the macro has
run.

Is there something I am missing?

The presenter view works for the first presentation only. After the macro
has run, the boxes showing the resolution and show presentation on 2nd
monitor are greyed out. (under slideshow tab) The presentation still runs
fine on the second monitor but the presenter view with slideshow notes etc do
not.

(I have tried saving my presentations in ppsm mode but then I can't get the
previous presentations to close.)

Please Help!
 

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