Stop has two syntaxes.
Description
Deactivates a timing object.
Applies to
Timing objects
Syntax
timingobject.Stop ( )
Return value
Integer.
Returns 1 if it succeeds and -1 if the timer is not running or could not be stopped.
Usage
Use this function to deactivate a timing object. A stopped timer can be reactivated with the Start function.
Examples
This statement stops the timing object instance MyTimer:
MyTimer.Stop()
See also
Description
Stops an animation (an AVI clip) from playing.
Applies to
Animation controls
Syntax
animationname.Stop ( )
Return value
Integer.
Returns 1 if it succeeds and -1 if the animation is not running or could not be stopped.
Usage
Use this function to stop an animation that is playing. A stopped animation can be restarted with the Play function.
Examples
This statement stops the AVI clip that is playing in the animation control MyAnimation:
MyAnimation.Stop()
See also