User Guide
1080 Screen class (Flash Professional only)
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