Macro that ends PowerPoint?

  • Thread starter Thread starter Guurt
  • Start date Start date
G

Guurt

Hello All,

Is there a macro that ends PowerPoint (that really quits the program?)
Recording does not work as as soon as the Quit (red cross) button is hit,
the program and the recording quits...as it should.

Thanks,
Bobo
 
Why not use the action setting? "Click on the pretty blue star and the show
goes away."

Insert a star shape and color it blue.
Right click on the star | Action setting | {tab} On Click | change the text
in 'Hyperlink to ...' to 'End show'

or you could use the code.

Sub Hamlet()
If MsgBox("Outrageous fortune?") = _
vbYes Then _
SlideShowWindows(1).View.Exit
End Sub


--

Bill Dilworth
Microsoft PPT MVP Team
===============
Please spend a few minutes checking vestprog2@
out www.pptfaq.com This link will yahoo.
answer most of our questions, before com
you think to ask them.

Change org to com to defuse anti-spam,
ant-virus, anti-nuisance misdirection.
..
..
 
Back
Top