User Guide
658 Chapter 6: Components Dictionary
Events inherited from the Loader class
The following table lists the events the Screen class inherits from the Loader class.
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 event is broadcast by the Transition Manager associated with
screenObj.
Example
In the following example, a button (nextSlide_btn) that’s contained by the slide named
mySlide is made visible when all the “in” transitions applied to mySlide have finished.
// Attached to mySlide:
on(allTransitionsInDone) {
this.nextSlide_btn._visible = true;
}
See also
Screen.allTransitionsOutDone
UIComponent.keyDown Broadcast when a key is pressed.
UIComponent.keyUp Broadcast when a key is released.
Event Description
Loader.complete Triggered when the content finished loading.
Loader.progress Triggered while content is loading.
Event Description