Start, Stop Events (Animation)

Purpose

Occur when an Animation control has started or stopped playing.

Syntax

Sub Animation_Start

Sub Animation_Stop

Description

Start is generated when the associated AVI clip has started playing.

Stop is generated when the associated AVI clip has stopped playing.

Example

 

Sub ani1_Start

Me.Caption = "Start"

Trace "Start"

End Sub

 

Sub ani1_Stop

Me.Caption = "Stop"

Trace "Stop"

End Sub

See Also

Animation

{Created by Sjouke Hamstra; Last updated: 23/10/2014 by James Gaite}