Event
UIComponent.keyDown
UIComponent.keyUp
Events inherited from the Loader class
The following table lists the events the Screen class inherits from the Loader class.
Event
Loader.complete
Loader.progress
Screen.allTransitionsInDone
Availability
Flash Player 6 (6.0 79.0).
Edition
Flash MX Professional 2004.
Usage
on(allTransitionsInDone) {
// your code here
}
listenerObject = new Object();
listenerObject.allTransitionsInDone = function(eventObject){
// insert your code here
}
screenObj.addEventListener("allTransitionsInDone", listenerObject)
Description
Event; broadcast when all "in" transitions applied to this screen have finished. The
allTransitionsInDone
.
screenObj
Example
In the following example, a button (
is made visible when all the "in" transitions applied to
mySlide
// Attached to mySlide:
on(allTransitionsInDone) {
this.nextSlide_btn._visible = true;
}
See also
Screen.allTransitionsOutDone
658
Chapter 6: Components Dictionary
Description
Broadcast when a key is pressed.
Broadcast when a key is released.
Description
Triggered when the content finished loading.
Triggered while content is loading.
event is broadcast by the Transition Manager associated with
nextSlide_btn
) that's contained by the slide named
have finished.
mySlide
Need help?
Do you have a question about the FLASH MX 2004-USING COMPONENTS and is the answer not in the manual?
Questions and answers