SlideSelectionChanged event in PP 2007

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

PowerPoint 2007 throws a SlideSelectionChanged event when a title shape is
selected on a slide. This behavior does not appear to be in harmony with
documention which indicates the event should only occur when actual slides
are selected. Is there anyway to distinquish between true slide selection and
title shape selection in an event handler?
 
Gfrank1157 said:
PowerPoint 2007 throws a SlideSelectionChanged event when a title shape is
selected on a slide. This behavior does not appear to be in harmony with
documention which indicates the event should only occur when actual slides
are selected. Is there anyway to distinquish between true slide selection and
title shape selection in an event handler?

Checking the selection type might help:

If ActiveWindow.Selection.Type = ppSelectionSlides Then
MsgBox "Slide selected"
Else
MsgBox "Shape or text selected"
End If
 
Back
Top