G
Guest
The Microsoft documentation shows on many occasion code similar to this one:
With ActivePresentation.Slides(1) _
.Shapes(3).ActionSettings(ppMouseOver)
.Action = ppActionRunMacro
.Run = "CalculateTotal"
.AnimateAction = True
End With
(See
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbapp10/html/ppprorun.asp)
But what type of shape will support this? I can't find any shape on
Office2003 that will accept to trigger a macro on a mouseover action.
Thanks
With ActivePresentation.Slides(1) _
.Shapes(3).ActionSettings(ppMouseOver)
.Action = ppActionRunMacro
.Run = "CalculateTotal"
.AnimateAction = True
End With
(See
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbapp10/html/ppprorun.asp)
But what type of shape will support this? I can't find any shape on
Office2003 that will accept to trigger a macro on a mouseover action.
Thanks