EasyManua.ls Logo

MACROMEDIA FLASH 8-ACTIONSCRIPT 2.0 LANGUAGE - Stopdrag (Movieclip.stopdrag Method)

MACROMEDIA FLASH 8-ACTIONSCRIPT 2.0 LANGUAGE
1378 pages
Print Icon
To Next Page IconTo Next Page
To Next Page IconTo Next Page
To Previous Page IconTo Previous Page
To Previous Page IconTo Previous Page
Loading...
MovieClip 927
Example
The following example shows how to stop a movie clip named
aMovieClip:
aMovieClip.stop();
See also
stop function
stopDrag (MovieClip.stopDrag method)
public stopDrag() : Void
Ends a MovieClip.startDrag() method. A movie clip that was made draggable with that
method remains draggable until a
stopDrag() method is added, or until another movie clip
becomes draggable. Only one movie clip is draggable at a time.
You can extend the methods and event handlers of the MovieClip class by creating a subclass.
Availability: ActionScript 1.0; Flash Player 5
Example
The following example creates a draggable movie clip instance called
mc_1:
this.createEmptyMovieClip("mc_1", 1);
with (mc_1) {
lineStyle(1, 0xCCCCCC);
beginFill(0x4827CF);
moveTo(0, 0);
lineTo(80, 0);
lineTo(80, 60);
lineTo(0, 60);
lineTo(0, 0);
endFill();
}
mc_1.onPress = function() {
this.startDrag();
};
mc_1.onRelease = function() {
this.stopDrag();
};
See also
_droptarget (MovieClip._droptarget property), startDrag (MovieClip.startDrag
method)
, stopDrag function

Table of Contents

Related product manuals