In this tutorial I'll explain about the ActionScript 3.0 Event Framework. After this tutorial you should have a clear understanding of how events, event dispatchers and event listeners work.
Taking a Closer Look at the ActionScript 3.0 Event Framework
Aug 19th in ActionScript, Novice by Daniel AptWhat Are You Going to Learn?
Because the AS3 event framework is huge, we'll look at all the different things which compose the event framework. We'll learn about the following:
- Events
- Event dispatchers
- Event listeners
- Event flow
- Often used events
- And some tips & tricks
Step 1: The Event Framework Simplified
I really think you would have a tough time understanding the event framework if we jump straight into the technical jargon, so I'll first describe a real-life situation. The whole situation is a metaphor for the event framework. Okay, so here we go:
I'm an avid reader of Computer Arts and I wait every single day for the new issue. When I receive the issue, I start reading it.
Step 2: Analyzing the Event Framework Metaphor
Okay, we have several things going on:
- I receive the new issue. This receiving of an issue is an Event.
- This event is happening somewhere, it happens to me, I'm the EventDispatcher.
- I'm waiting for the new issue to arrive. I'm an object and I'm waiting for this event to happen. I'm an object which is listening for the event to happen. I'm an object with an event listener added to me. This event listener is listening to a specific event (namely receiving a new issue).
- When I receive the issue, I start reading it. When the event has happened, I do something, I execute a function. I'm handling the event. The function that I'm doing is called the handler and/or the listener function.
Step 3: Technical Jargon - Event
I've mentioned several things:
- Event
- EventDispatcher
- Event listener
- handler / listener function
An Event is an object which describes an occurrence, in Step 1 the event is the arrival of a new issue.
Most times you'll see an event that's written in a structure similar to this:
MouseEvent.CLICK
This snippet of code consists of two things:
- MouseEvent this is the class that contains one or more events. This is always written in CamelCase.
- CLICK this is the event type. This is always written in UPPERCASE.
The event type is actually a static constant string. It might sound strange, but an Event is nothing other than a string. Try running this snippet.
trace(MouseEvent.MOUSE_MOVE);
You'll get as output mouseMove. We've just traced the constant MOUSE_MOVE, which is inside the MouseEvent class. An event is a string! But this string represents the occurrence of (in this example) the movement of the mouse.
Step 4: Technical Jargon - EventDispatcher
An event always happens somewhere. Where the event happens is where it gets fired (dispatched). The roots of dispatching events is in the class EventDispatcher. Do realize that where the event is dispatched is where it is happening. So if movie clip A dispatches an event, then an event listener (event listeners will be explained in step 5) added to movie clip B wouldn't receive this event.
To make things easy, all the display objects have the built in function dispatchEvent(event:Event), just like many other classes.
var myMC:MovieClip = new MovieClip(); myMC.dispatchEvent(new Event(MouseEvent.CLICK));
But most times you won't dispatch events manually, most times events are dispatched automatically. For example, if I'd click movie clip A, it would automatically dispatch the event MouseEvent.CLICK.
Step 5: Technical Jargon - Event Listener
When a certain event happens, we, as Flash developers, would like to do something to respond to this event. Event listeners are what you need. Event listeners don't have their own class, no they're a bit different. Event listeners are added to an object. Event listeners are objects that "listen" to a certain event. When this event happens, then a function will be called, a handler (function).
Look at the image below, showing the syntax behind the function addEventListener(), which is used to add an event listener:

Actually those aren't all the parameters the addEventListener method accepts, there are still three that I haven't mentioned. You'll almost never use them, especially when you've just started using event listeners. Let's look again at the structure of the addEventListener method.
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
So let's discuss the last 3 parameters:
- useCapture: When this parameter is set to true, we'll listen to the event in the capture phase. By default this parameter is set to false, thus we listen to the event in the target and bubble phase. We'll discuss the event flow in Step 10.
- priority: Even though it might seem as if all event listeners work simultaneously, they actually don't. Sometimes they might conflict with each other. This is to make sure that a certain event listener has a higher priority than a different event listener.
- useWeakReference: When this paramater is set to true it will create a weak link between the object and event listener. Well, what does this mean? Normally objects get garbage collected if there are no references to them. When the object is removed where an event listener is added, it will still exist if it's being referenced somewhere else. This happens with strong memory references. With weak memory references the event listener gets removed when the object it's added to gets removed. I personally set this parameter to true (so I use weak memory references).
Removing an event listener is just as easy as adding one.
//this adds an event listener to the stage stage.addEventListener(MouseEvent.CLICK, clickHandler); //this removes the event listener added to the stage stage.removeEventListener(MouseEvent.CLICK, clickHandler);
Step 6: Handler / Listener Function
When the event occurs that an event listener is listening for, it calls a function. This function is called the handler or the listener function. Look at the image below, showing the syntax of the handler:

Notice the argument in the handler, this argument is compulsory. The listener function only has one argument and is not allowed to have more. This event contains information about the event, we'll talk about this in step 9.
Step 7: Adding an Event Listener and Handler
Now we want myMC to respond to the dispatched event, so we'll add an event and afterwards the handler function. Our code will look like so:
//create our myMC movie clip
var myMC:MovieClip = new MovieClip();
//let myMC dispatch the event MouseEvent.CLICK
myMC.dispatchEvent(new Event(MouseEvent.CLICK));
//add an event listener to myMC, that listens to the event MouseEvent.CLICK, and will call clickHandler
myMC.addEventListener(MouseEvent.CLICK, clickHandler);
//define the handler function
function clickHandler (event:Event){
trace("I heard the event MouseEvent.CLICK");
}
Afterwards test your movie (Windows: Ctrl + Enter, Mac: Cmd + Enter).
Did you get any output? No? Well, neither did I. We'll look at what's going wrong in the next step.
Step 8: Code Order
So what's going wrong? Well, it can't be a syntax error, at least I'm not getting anything. No, this is technically not even an error. Look at the code again, but this time remember that the code will be executed line by line:
//create our myMC movie clip
var myMC:MovieClip = new MovieClip();
//let myMC dispatch the event MouseEvent.CLICK
myMC.dispatchEvent(new Event(MouseEvent.CLICK));
//add an event listener to myMC, that listens to the event MouseEvent.CLICK, and will call clickHandler
myMC.addEventListener(MouseEvent.CLICK, clickHandler);
//define the handler function
function clickHandler (event:Event){
trace("I heard the event MouseEvent.CLICK");
}
I hope you've realized what's gone wrong: the event is being dispatched before an event listener has been added to myMC. So when the event listener has been added, it's too late, the event has happened. Luckily it's easy to solve, just change the order and first add the event listener, then afterwards dispatch the event:
//create our myMC movie clip
var myMC:MovieClip = new MovieClip();
//add an event listener to myMC, that listens to the event MouseEvent.CLICK, and will call clickHandler
myMC.addEventListener(MouseEvent.CLICK, clickHandler);
//let myMC dispatch the event MouseEvent.CLICK
myMC.dispatchEvent(new Event(MouseEvent.CLICK));
//define the handler function
function clickHandler (event:Event){
trace("I heard the event MouseEvent.CLICK");
}
So why did we do all that? Well, you'll likely encounter this problem and it might take a while to realize what's going on. It's better to show you the problem and teach you how to solve it.
Step 9: The Event Argument
Every handler function has one argument; the event argument. This argument contains data about the event and the event dispatcher. The parameter contains properties that we would like to read. Here's a list of some of the most commonly used ones:
- target: This returns the target object and thus the event dispatcher of the event.
- currentTarget: This returns the currently targeted object within the event flow, we'll talk about the event flow in Step 10.
- type: This will return the event string. The value is always written in camelCase. So MOUSE_DOWN has the value mouseDown.
With this we can use the same handler for different types of events. How? Well we'll discuss this in the next step.
Step 10: Multiple Events, One Listener Function
Okay, first let's look at this snippet of code:
stage.addEventListener(MouseEvent.MOUSE_DOWN, downHandler);
stage.addEventListener(MouseEvent.MOUSE_UP, upHandler);
function downHandler(event:MouseEvent){
trace("Down");
}
function upHandler(event:MouseEvent){
trace("Up");
}
We're using two events, namely MouseEvent.MOUSE_DOWN and MouseEvent.MOUSE_UP. The first event is the event when the mouse presses the primary mouse button and holds it down. When the person releases this button, then the event MouseEvent.MOUSE_UP happens. The mouse button goes up after releasing it.
Now we can use instead of two handlers (namely downHandler and upHandler) just one handler. Remove the code we've written and type following:
stage.addEventListener(MouseEvent.MOUSE_DOWN, handler);
stage.addEventListener(MouseEvent.MOUSE_UP, handler);
function handler(event:MouseEvent){
trace("Something has occurred...");
}
Okay, we've set up our handler and it works, but we want our handler to do something specific, depending on which event is passed to the handler. Luckily, we can use event.type. Let's use it!
stage.addEventListener(MouseEvent.MOUSE_DOWN, handler);
stage.addEventListener(MouseEvent.MOUSE_UP, handler);
function handler(event:MouseEvent){
if(event.type == "mouseDown"){
trace("Down");
}else{
trace("Up");
}
}
Step 11: Event Flow
Now let's say that a click happens on a movieclip, let's call it mcA. The event doesn't simply get dispatched at mcA, no, the event travels through the whole player. This traveling is called the event flow, just think how the event is flowing through the player.
The event starts at the top level, at the stage, afterwards it will go through the parents of mcA, until the event reaches mcA. Afterwards the event will "bubble" back from mcA, back to the stage.

Ok, cool, but what can I use this for? Because we now know that an event travels through all the parents of the dispatcher, we can use just one event listener, to track the events of more than one object.
Step 12: Multiple Objects, One Event Listener
Okay, so let's create some multiple movie clips inside each other. You can do this yourself, or just use the step-11.fla file provided.
We'll create 3 movie clips and we'll give them the instance names redMC, blueMC and greenMC. Afterwards place all these inside a bigger movieclip, named container.
Now let's start writing code. I've already created a layer named Actions, so write your code on that layer. First let's add an event listener to container, listening to the event MouseEvent.CLICK, with the handler named clickHandler.
container.addEventListener(MouseEvent.CLICK, clickHandler);
function clickHandler(event:MouseEvent){
//function body
}
We want to know which button is being clicked, so why did we add an event listener to container? Well, look at the picture below:

As you see, the event is being dispatched at redMC, however it will bubble back to container. Then the event listener added to container will hear the event and will call the listener function clickHandler. The same happens with blueMC and greenMC.
Now we're going to use event.target, because event.target is the event dispatcher, and the event dispatcher is redMC. So how we can use event.target? We can check for event.target.name, which returns the instance name as a string. So we can just use normal if statements:
container.addEventListener(MouseEvent.CLICK, clickHandler);
function clickHandler(event:MouseEvent){
if(event.target.name == "redMC"){
trace("Red");
}
if(event.target.name == "blueMC"){
trace("Blue");
}
if(event.target.name == "greenMC"){
trace("Green");
}
}
Step 13: Often Used Events
Now you have a good understanding of the event framework, however to achieve something, the key thing is to know which event to use. A great place to check which events exist, is the ActionScript 3.0 Language and Components Reference. Just click an event containing class, like MouseEvent, and look at what each event is.
Step 14: MouseEvent.MOUSE_MOVE
This event occurs when the user moves the mouse. If you add an event listener listening to this event, on, let's say, a movieclip named myMC, then you'd know when the mouse is moving over myMC.
myMC.addEventListener(MouseEvent.MOUSE_MOVE, mouseMoveHandler);
function mouseMoveHandler(event:MouseEvent){
trace("Your mouse is moving over myMC");
}
Step 15: MouseEvent.MOUSE_OVER
This event occurs when the user moves over (hovers). This event only occurs when the user moves the cursor from somewhere else over the object. Moving the mouse over the object is then no longer the event MouseEvent.MOUSE_OVER, but the event MouseEvent.MOUSE_MOVE.

myMC.addEventListener(MouseEvent.MOUSE_OVER, overHandler);
function overHandler(event:MouseEvent){
trace("You just moved the mouse on myMC");
}
Step 16: MouseEvent.MOUSE_OUT
This event is precisely the opposite of MouseEvent.MOUSE_OVER. This is when the user's cursor moves off the object, or as they (the guys that created AS3) call it, out of the object.
myMC.addEventListener(MouseEvent.MOUSE_OUT, outHandler);
function outHandler(event:MouseEvent){
trace("You just moved the mouse out myMC");
}
Step 17: MouseEvent.MOUSE_DOWN
This event occurs when the user presses the primary mouse down, while it's being held down.
myMC.addEventListener(MouseEvent.MOUSE_DOWN, downHandler);
function downHandler(event:MouseEvent){
trace("The primary mouse button is pressed down on myMC");
}
Step 18: MouseEvent.MOUSE_UP
This event is precisely the opposite of MouseEvent.MOUSE_DOWN. When the user releases the primary mouse button, then the event MouseEvent.MOUSE_UP occurs.
myMC.addEventListener(MouseEvent.MOUSE_UP, upHandler);
function upHandler(event:MouseEvent){
trace("The primary mouse button has been released, while it was hovering over myMC");
}
Step 19: MouseEvent.CLICK
Well the name already makes it pretty clear when this event occurs. This event occurs when the user clicks (with the primary mouse button).
myMC.addEventListener(MouseEvent.CLICK, clickHandler);
function clickHandler(event:MouseEvent){
trace("You just clicked myMC");
}
Step 20: MouseEvent.DOUBLE_CLICK
Well this event occurs when the user clicks twice (with the primary mouse button). Do note that when MouseEvent.DOUBLE_CLICK occurs, that MouseEvent.CLICK is occurring for the second time.
myMC.addEventListener(MouseEvent.DOUBLE_CLICK, doubleClickHandler);
function doubleClickHandler(event:MouseEvent){
trace("You just double clicked myMC");
}
If you now test your movie and double-click, nothing will happen. Why? Well by default movie clips (and almost all display objects) have the property doubleClickEnabled set to false. So MouseEvent.DOUBLE_CLICK won't be dispatched. Just set it to true, and everything will work fine.
myMC.addEventListener(MouseEvent.DOUBLE_CLICK, doubleClickHandler);
function doubleClickHandler(event:MouseEvent){
trace("You just double clicked myMC");
}
myMC.doubleClickEnabled = true;
Step 21: Event.ENTER_FRAME
This event occurs every time the object enters a new frame (yes, that sounds a bit weird). Well basically this event occurs at the rate of the frame rate. That means that if your movie has a framerate of 30 fps, then the event will be called 30 times a second. What would you use this event for? You can use this event to make things happen gradually. For example you could increase an object's x coordinate by 5, at the rate of the frame rate.
myMC.addEventListener(Event.ENTER_FRAME, enterFrameHandler);
function enterFrameHandler(event:Event){
myMC.x += 5;
}
Step 22: Event.COMPLETE
This event occurs when the object completes whatever it was doing. Most times you'll use it for things that need to load something, or for things that play some form of media. An URLLoader loads an URLRequest, after the URLLoader completes loading, then we'll load this data into a different loader and afterwards add the loader to the stage.
var myURLRequest:URLRequest = new URLRequest("http://farm3.static.flickr.com/2382/1616598266_bafebf0086_o.jpg");
var myURLLoader:URLLoader = new URLLoader(myURLRequest);
myURLLoader.dataFormat = URLLoaderDataFormat.BINARY;
myURLLoader.addEventListener(Event.COMPLETE, completeHandler);
function completeHandler(event:Event){
var loader:Loader = new Loader();
loader.loadBytes(myURLLoader.data);
addChild(loader);
}
Step 23: Event.RESIZE
This event occurs when the flash player or the page where the flash is contained is resized. You can use this event to reposition objects after the resizing has happened.
stage.addEventListener(Event.RESIZE, resizeHandler);
function resizeHandler(event:Event) {
trace("The dimensions of the stage are "+stage.stageWidth+" x "+stage.stageHeight);
}
Step 24: KeyboardEvent.KEY_DOWN
This event occurs when any key is pressed on the key board.
stage.addEventListener(KeyboardEvent.KEY_DOWN, keyDownHandler);
function keyDownHandler(event:KeyboardEvent){
trace("You just pressed a key!");
}
Step 25: KeyboardEvent.KEY_UP
This event is precisely the opposite of KeyboardEvent.KEY_DOWN, this event occurs when any key is released (the key goes up).
stage.addEventListener(KeyboardEvent.KEY_UP, keyUpHandler);
function keyUpHandler(event:KeyboardEvent){
trace("You just released a key");
}
Step 26: Using the built in key booleans
Of course, it's pretty useless to respond to any key (except for a screen saver), so we would need to retrieve information as to which key has been pressed. Luckily, some of the keys are built into the class KeyboardEvent, these are booleans and are set to true when it's being pressed down. These built in booleans are:
- KeyboardEvent.altKey, this is set to true when the alt key is pressed down.
- KeyboardEvent.commandKey, this is set to true when the command key is pressed down (AIR only).
- KeyboardEvent.controlKey, this is set to true when the control (ctrl) key is pressed down (AIR only).
- KeyboardEvent.ctrlKey, this is set to true when the control (ctrl) key is pressed down on Windows. However on Mac ctrl key is true when the cmd key is pressed.
- KeyboardEvent.shiftKey, this is set to true when the shift key is pressed down.
So now we can use this to be more specific which key must be pressed before we do something.
stage.addEventListener(KeyboardEvent.KEY_DOWN, keyDownHandler);
function keyDownHandler(event:KeyboardEvent){
if(event.shiftKey){
trace("You just pressed the shift key");
}
}
Step 27: Using Key Codes
You might be wondering, okay, what about all the other keys? Well there's something called the key code. Every key has a certain number; a key code. We can check the key code of the key that triggered the event. This is done with event.keyCode, which returns an integer. Click here for a list of key codes. Even though it's for javascript, the key codes are the same.
stage.addEventListener(KeyboardEvent.KEY_DOWN, keyDownHandler);
function keyDownHandler(event:KeyboardEvent){
if(event.keyCode == 65){
trace("You just pressed the A key");
}
}
Now it's easier to store the key codes in a variable (or if you're hardcore, in a class) and just use that variable, instead of the key code.
var A:uint = 65;
stage.addEventListener(KeyboardEvent.KEY_DOWN, keyDownHandler);
function keyDownHandler(event:KeyboardEvent){
if(event.keyCode == A){
trace("You just pressed the A key");
}
}
Step 28: Using Character Codes
With key codes you can get quite a lot done, however it sometimes isn't what you need. For example, the same key is used for the characters a and A. But we'd still want to differentiate between those two. Well, the event carries the character code of the event dispatcher.
stage.addEventListener(KeyboardEvent.KEY_DOWN, keyDownHandler);
function keyDownHandler(event:KeyboardEvent) {
trace(event.charCode);
}
Okay, this works, however do we then need to remember these character codes? No. Luckily we can use the function charCodeAt(), which returns the character code of a character (in a String). charCodeAt() takes by default the first character out of the string. charCodeAt(0) is the first character, charCodeAt(1) the second, etcetera.
stage.addEventListener(KeyboardEvent.KEY_DOWN, keyDownHandler);
function keyDownHandler(event:KeyboardEvent){
if(event.charCode == String("a").charCodeAt()){
trace("You just pressed the lowercase a key");
}
}
Step 29: Focus
Now try typing the following:
myMC.addEventListener(KeyboardEvent.KEY_DOWN, keyDownHandler);
function keyDownHandler(event:KeyboardEvent){
trace("You just pressed a key, while being focused on myMC");
}
Try testing this, it won't work! Why? If myMC is a movie clip, it won't accept keyboard input, thus keyboard events won't be dispatched at movie clips. If you want myMC to respond, add the event listener to the stage and then make myMC do something. Try changing myMC from a movie clip to a dynamic text field, then it will work.
What about two dynamic text fields? If the user types, do both text fields dispatch an event? No, only the one you're typing in. This is called focus. Keyboard events are dispatched by the object which has focus. The stage is the only object that still has focus, while a different object also has focus.
Step 30: TimerEvent.TIMER
This event is specially built for timers. It gets dispatched at a timer, that just reached the delay time. This means that you can use this event to do something very precisely, at set time intervals.
var myTimer:Timer = new Timer(1000, 5);
myTimer.start();
myTimer.addEventListener(TimerEvent.TIMER, timerHandler);
function timerHandler(event:TimerEvent){
trace("one second later...");
}
Step 31:TimerEvent.TIMER_COMPLETE
All timers have an optional second parameter. This parameter is sets the repeat count of the timer. This means that when the timer reaches the delay time, it will start again. If the timer has repeated as often as the repeat count, it will dispatch the event TimerEvent.TIMER_COMPLETE.
var myTimer:Timer = new Timer(1000, 5);
myTimer.start();
myTimer.addEventListener(TimerEvent.TIMER_COMPLETE, timerHandler);
function timerHandler(event:TimerEvent){
trace("The timer has repeated 5 times");
}
Conclusion
That was it! I hope that you now have a thorough understanding of ActionScript 3.0's event framework. Do realize that the events discussed aren't all the events that exist, I just discussed the ones I use often. Don't forget to always check the language and components reference, it can help you a lot! It was a pleasure writing for you guys!













User Comments
( ADD YOURS )Deoxys July 27th
Nice. Finally a really clear Flash-Tutorial about events! I was waiting for that.
( )André August 19th
Hey, very nice tutorial and very illustrative, this will help many people here, for me isnt usefull for now, but this tutorial is the kind of tut that i will recommend for anyone who want to learn about events in AS…
Thanks a lot!
( )Dario Gutierrez August 19th
Pretty clear, excellent explanation!
( )Joshua August 19th
Wow, that helped me a lot! Thank you. I think this might interest many people who are strugling with events. I know I have, but now I will do just fine (I hope).
( )Franky August 19th
Good stuff.
( )Im just learning about dispatch events and I’m a flash savge. What the funk is up with that!
John August 19th
Relating code to a real-life situation, makes it so much easier to understand.
If I’d read this when trying to get my head around ActionScript 3.0’s event’s
I’d have understood first time
10/10
( )Marcelo August 19th
Very good, it’s good to teach the others how to work in the rigth way in Actionscript 3.
You can make a tut about how to create ours events in a external class.
( )Michel August 19th
Very helpful. Thanks a lot.
( )Daniel Balfour August 20th
Haven’t read it yet. I just briefly looked it over but boy does it seem thorough! Definitely worth the toner!
Now I know what I’ll be reading on the train ride tomorrow afternoon
( )Diego SA August 20th
Landed here in perfect time!, just when I’m about to start to create a flash website! Thanks!
( )Zach August 20th
THIS IS AWESOME!!! THANKS!!!
( )Javier August 20th
This was a pretty good tutorial on Events. The Event Flow step was my favourite, the explanation is very easy to understand.
But i wouldn’t recommend doing different things on the same handler unless they’re intimately related. One function doing more than one thing means more places where it could fail and so on.
( )Jeremy August 20th
Taking another Flash course this fall at my college, which focuses on AS. This tut gives me a head start.
Very well written and illustrated. Good job!
( )Daniel Apt August 22nd
Thank you all for the kind comments!
( )Eslam Ahmed August 24th
heeey ..it’s really good job.. keep going .. waiting for more …
( )Justin Woods August 24th
Pretty good lesson,
Parts of this lesson seemed a bit rushed compared to others, I feel like the explanation of target vs. currentTarget wasn’t too clear as well as the explanations for the 3 additional parameters for a listener. Also shouldn’t Step 7 on line 11 say (event:MouseEvent). Overall I think this was an impressive explanation of Events!
( )Daniel Apt August 25th
Thank you Mr. Woods for the constructive criticism. I’ll try to improve my writing and explanation in the next tutorial.
Yes, event:MouseEvent should actually be used (sorry ’bout that), however event:Event won’t be a problem. This is because the MouseEvent class extends the Event class.
( )Davi-T August 28th
Wow, can’t believe you’re only 16 years old. Good stuff, well written. Keep em’ comin’.
( )Krishma September 8th
Absolutely Awsome!!! very nicely explained and a go getter link to start with Event and understand teh event framework!
( )edpelesh September 9th
Saved my day, for sure
( )Peter September 10th
16 years old!?! Gah… a very well done to you! Good tutorial regardless of age.
( )Nick September 12th
guys i need help
i tried using this script
homeMC.addEventListener (MouseEvent.ROLL_OVER, buttonROLLOVER);
aboutMC.addEventListener (MouseEvent.ROLL_OVER, buttonROLLOVER);
function buttonROLLOVER (MouseEvent):void {
if (event.target == “homeMC”) {
trace(”homeMC”);
} else { trace(”nothing lah”);
}
// I wanted to use one single function throughout my links instead of creating a new function each time for the every new EventListener
can i use the IF like this? I keep getting error I NEED HELP
( )Nick September 12th
er ok i think i solve it buttonROLLOVER (event:MouseEvent) looks like AS3.0 is veri veri strict lol
( )123kid September 15th
the tutorials here are well explained i wish someone will write about the tweening in action script 3.0
im studying flash right now..and im enjoying it..
now my future to be a flash developer is more clearer..
i wish for more illustrative, well explained and easy to understand tutorials
.it helps a lot..
thanks and more power
( )Daniel Apt September 23rd
At this very moment I’m writing a tutorial about tweening, so it’ll be there
!
( )Nybras September 23rd
Hi, you’ve made a good article, very detailed.
Anyway, the problem is that I dislike so much the default Event System implementation of Actionscript 3.
If you like things more obvious and agile, try this:
( )http://nybras.com/blog/gunz-bye-bye-event-dispatcher/
Jan September 23rd
Very, very good; thank you from the bottom of my heart
( )Admin October 23rd
Excellent Tutorial!!
Really this was very very helpful for me in my Action Script project.
I was in trouble with ENTER_FRAME event type dispatched by different objects. When I set priority asper my needs it is working fine.
Thanks a lot!!
( )Hamza October 24th
Really a great tutorial.
thanks alot
( )Smashing Buzz October 31st
looks really advance tutorial.
( )unp November 4th
this bubbling thing is the worst thing ever. How do I make my girl object to listen to my boy object when they are cousins, not parent/child? In other words, how do I get two objects to listen to each other? Why would Adobe write Events this way? I don’t want my events to “bubble up”… bubbling down would be more useful. wtf guys. wtf. Am I going to have to make my own “Event” implementation using arrays on all the event-dispatching objects — to have it work the way it should?
( )Daniel Apt November 6th
Hi there unp,
Bubbling down would be a huge problem, think of it, if there would be a menu and I clicked on it, then the click event would bubble down to all buttons inside that menu, because of this all the event listeners added to all these buttons would call their handlers, that would be terrible!
Okay, back to your problem: it’s possible to access the girl object from within the boy object. I don’t have a precise idea of what the hierarchical structure is of your project, but let’s say it’s like the following image:
http://twitpic.com/oinsz
I can then access girl from boy with:
root.containerB.girl or with
parent.parent.containerB.girl
Do note that both containers must be added to the stage, and the girl and boy object must be added to the corresponding container before you can start referencing it (or else you’ll get a reference error). Also adding event listeners can be only done when all objects have been added to the stage and their corresponding containers.
If you’d want boy to do something when girl is clicked you could do:
root.containerB.girl.addEventListener(MouseEvent.CLICK, boyResponse);
function boyResponse(event:MouseEvent) {
trace(”Don’t touch my girl!”);
}
I hope this helps you and or else you can connect with me via twitter:
( )http://twitter.com/DanielApt
kanti November 5th
i am stuck in a problem, where i am using a textfield in sprite object.
( )i have to write in the textfield using keyboardevent.
mouseclickevent is working but keyboard is not.
please give ur emailid so that i can send u source code.
thanks in advance.
please reply!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Daniel Apt November 6th
Hi there, I’m sorry kanti, I won’t put my email publicly here, however I’ll try to help you with this comment.
Are you sure that it’s possible to type in the text field, is it a text field of type input? If not, you can easily change it by doing the following:
myTextField.type = TextFieldType.INPUT
If that doesn’t work it might mean that the text field doesn’t have focus, only objects that have focus can dispatch keyboard events. Text fields get focus when you click on them, if you want to you can also set the focus manually:
stage.focus = myTextField;
Why not check what has focus? This might help you:
stage.addEventListener(FocusEvent.FOCUS_IN, checkFocus);
function checkFocus(event:FocusEvent){
trace(’The following object has focus:’);
trace(event.target.name);
trace(’Which is of type:’);
trace(event.target);
}
Or else feel free to contact me on twitter, where I’ll give you my email:
( )http://twitter.com/DanielApt