ActionSetting.ActionVerb Property (PowerPoint)
Returns or sets a string that contains the OLE verb that will be run when the user clicks the specified shape or passes the mouse pointer over it during a slide show. Read/write.
Syntax
expression .ActionVerb
expression A variable that represents an ActionSetting object.
Remarks
The Action property must be set to ppActionOLEVerb first for this property to affect the slide show action.
Example
This example sets shape three on slide one to be played whenever the mouse pointer passes over it during a slide show. Shape three must represent an OLE object that supports the "Play" verb.
With ActivePresentation.Slides(1).Shapes(3) _
.ActionSettings(ppMouseOver)
.ActionVerb = "Play"
.Action = ppActionOLEVerb
End With