Occur when an Animation control has started or stopped playing.
Sub Animation_Start
Sub Animation_Stop
Start is generated when the associated AVI clip has started playing.
Stop is generated when the associated AVI clip has stopped playing.
Sub ani1_Start
Me.Caption = "Start"
Trace "Start"
End Sub
Sub ani1_Stop
Me.Caption = "Stop"
Trace "Stop"
End Sub
{Created by Sjouke Hamstra; Last updated: 23/10/2014 by James Gaite}