This could be done with a little VBA code. Each check box could be tied
to a procedure that hides or unhides the appropriate slide based on
whether the check box is checked.
--David
Here is some simple code to get you started if you want to try this:
Private Sub CheckBox1_Click()
If Slide1.CheckBox1.Value = True Then
ActivePresentation.Slides(2).SlideShowTransition.Hidden = _
msoFalse
Else
ActivePresentation.Slides(2).SlideShowTransition.Hidden = _
msoTrue
End If
End Sub
Private Sub CheckBox2_Click()
If Slide1.CheckBox2.Value = True Then
ActivePresentation.Slides(3).SlideShowTransition.Hidden = _
msoFalse
Else
ActivePresentation.Slides(3).SlideShowTransition.Hidden = _
msoTrue
End If
End Sub
Private Sub CheckBox3_Click()
If Slide1.CheckBox3.Value = True Then
ActivePresentation.Slides(4).SlideShowTransition.Hidden = _
msoFalse
Else
ActivePresentation.Slides(4).SlideShowTransition.Hidden = _
msoTrue
End If
End Sub
For this code, just put three check boxes on your first slide and label
them Slide 2, Slide 3, and Slide 4. Also set their values to start out
checked if your slides start out showing or unchecked if your slides
start out hidden. Double-click on one of the check boxes and replace what
you see with the code above. Next create slides 2, 3, and 4. When you run
the slide show, for any check box that is checked, that slide will be
shown. For any check box that is unchecked, that slide will be hidden.
--David
--
David M. Marcovitz
Microsoft PowerPoint MVP
Director of Graduate Programs in Educational Technology
Loyola College in Maryland
Author of _Powerful PowerPoint for Educators_
http://www.loyola.edu/education/PowerfulPowerPoint/