| Language Version : | ActionScript 3.0 |
| Player Version : | Flash Player 9 |
The Wipe class reveals or hides the movie clip object by using an animated mask of a shape that moves
horizontally. This effect requires the
following parameter:
startPoint: An integer indicating a starting position; the range
is 1 to 9: Top Left:1; Top Center:2, Top Right:3; Left Center:4; Center:5; Right Center:6; Bottom Left:7; Bottom Center:8, Bottom Right:9.
For example, the following code uses the Wipe transition for the movie clip
instance img1_mc:
import fl.transitions.*;
import fl.transitions.easing.*;
TransitionManager.start(img1_mc, {type:Wipe, direction:Transition.IN, duration:2, easing:None.easeNone, startPoint:1});