A family of Microsoft presentation graphics products that offer tools for creating presentations and adding graphic effects like multimedia objects and special effects with text.
This code runs oK for me when I select a text placeholder on the notes page -are you sure you have initialized the event>
Public WithEvents EV As Application
Private Sub EV_WindowSelectionChange(ByVal Sel As Selection)
If Sel.Type = ppSelectionText Then
Debug.Print Sel.TextRange.Parent.Parent.Name
Application.Caption = Sel.TextRange.Parent.Parent.Name
End If
End Sub