Flash CS3 Tutorial, DragAndDrop

64
rate or flag this page

By frenchsquared

Flash CS3 Tutorials



Flash CS3 Tutorial, Drag and Drop

As always, some of the work has been done for you. If you open the file start01 you will see a big smiley face. The smiley face has been labeled smiley_mc. If you move into the smiley face MovieClip you will see a lot of key frames. Some basic animation as been created for you. This Flash CS3 Tutorial is about controlling graphics with the mouse, creating the tweens will not be covered. However, you will learn how to make the smiley face react to the mouse. Lets make the MovieClip do something every time the mouse moves over it. Start by coping the code from the example to the first key frame in the actions layer. smiley_mc.addEventListener(MouseEvent.MOUSE_OVER , smiley); function smiley(event:MouseEvent):void{

smiley_mc.play() };

The code creates an Event Listener and adds that Event Listener to the MovieClip smiley_mc. Event listeners have been covered in more depth other Flash CS3 Tutorials. The Event Listener is simply listening for the MouseEvent Mouse over. Then once the event happens ActionScript is telling the MovieClip smiley_mc to play.

Press Control-Enter to see the Smiley Face react.

If you once again go into the Smiley MovieClip and look at the key Frames you will see how this works. When the Event Listeners detects that the mouse has passed over or onto the smiley_mc, actionScript tells the smiley_mc to play, thus playing the movie until something tells the smiley_mc movie to stop. In this case there are key frames in the actions layer that simply have the stop action added to them. You can create any form of animation inside a movie clip then use action script to control when the movie plays.

Drag and Drop Lets add some more interactivity to the smiley face by adding a drag and drop ability.

Copy the example code and add it below the current event listener. smiley_mc.addEventListener(MouseEvent.MOUSE_DOWN , smileyDrag); function smileyDrag(event:MouseEvent):void{

smiley_mc.startDrag(); };

Once again you will see the slandered event listener. What is new would be the smiley_mc.startDrag();. The startDrag method tells Flash CS3 to enable a MovieClip to be moved around the stage. You define which MovieClip by placing the name of the MovieClip in front of the startDrag method, separated with a period. If you test the movie at this point you will see that when you click on the smiley face it movies with the mouse cursor., but how do you stop dragging the smiley around. Well, you need to add another Event Listener. smiley_mc.addEventListener(MouseEvent.MOUSE_UP , smileyStopDrag); function smileyStopDrag(event:MouseEvent):void{

smiley_mc.stopDrag(); };

The first Event Listener listened for the mouse to be pressed down. This time you need Flash CS3 to listen for the mouse up event. Since you want the smiley_mc to stop dragging when the mouse button is released you will add the method stopDrag to the MovieClip. Basically, you use the same thing to stop dragging as you do to start dragging.

See the Complete Flash Tutorial

 

 

 

Everything Computer Related

This does not appear to be a valid RSS feed.

Comments

RSS for comments on this Hub Small RSS Icon

frenchsquared profile image

frenchsquared  says:
14 months ago

This site does offer content, that is a complete tutorial. Ask a flash guy

huni  says:
14 months ago

great flash tutorial, thanks for creating it

ilike2  says:
13 months ago

Interesting tutorial

Ollie  says:
6 months ago

<!-- /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-parent:""; margin:0cm; margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:12.0pt; font-family:"Times New Roman"; mso-fareast-font-family:"Times New Roman";} span.EmailStyle15 {mso-style-type:personal; mso-style-noshow:yes; mso-ansi-font-size:10.0pt; mso-bidi-font-size:10.0pt; font-family:Arial; mso-ascii-font-family:Arial; mso-hansi-font-family:Arial; mso-bidi-font-family:Arial; color:windowtext;} @page Section1 {size:612.0pt 792.0pt; margin:72.0pt 90.0pt 72.0pt 90.0pt; mso-header-margin:36.0pt; mso-footer-margin:36.0pt; mso-paper-source:0;} div.Section1 {page:Section1;} -->

Anyway to drag and drop the object but it also leaves a copy of that object in the original


location?


Submit a Comment

Members and Guests

Sign in or sign up and post using a hubpages account.


optional


  • No HTML is allowed in comments, but URLs will be hyperlinked
  • Comments are not for promoting your hubs or other sites

working