"Resume Slideshow" button is missing

  • Thread starter Thread starter Dougbo
  • Start date Start date
D

Dougbo

It's the dumbest thing. I inadvertently clicked on the stupid little x in
the top-right corner of the "resume slideshow" button, and now it seems to be
gone forever. Does anyone know how to re-enable it PowerPoint 2007?

Thanks.
 
Do the following:
1. Click "Office Button" on the top-left.
2. Click "PowerPoint Options" button.
3. Select "Customize" in the left pane.
4. Select "Commands Not in the Ribbon" in "Choose commands from" box.
5. Locate and select "Resume Slide Show" command.
6. Click "Add>>" button and then the "OK" button.

This would get you the Resume Slide Show button on the QAT. Although not the
same thing as showing the "Slide Show" toolbar again but clicking this
button would get you back to the slide show.

- Chirag

PowerShow - View multiple PowerPoint slide shows simultaneously
http://officeone.mvps.org/powershow/powershow.html
 
Run this wee bit of VBA, it should solve your PowerPoint's shenanigans.


Sub ResumeResumePopUpBar()
Dim oTool As CommandBar
On Error Resume Next
For Each oTool In Application.CommandBars
If oTool.Name = "Slide Show" Then
oTool.Visible = True
End If
Next
End Sub



Bill Dilworth
 
The code wouldn't reset the visibility for some reason. I had to run the
code in the debugger and add the tool object to a watch window, single-step,
and then change the Visible property to True.

The button is back. It's just a little thing, but it was making me crazy
that I couldn't find a check-box in the application that would re-enable it.

Thanks for the help.
 
Back
Top