ActionScript 2.0 Components Language Reference |
|
|
|
| Screen class > Screen.allTransitionsInDone | |||
Flash Player 6 (6.0.79.0).
Flash MX Professional 2004.
on(allTransitionsInDone) {
// Your code here.
}
listenerObject = new Object();
listenerObject.allTransitionsInDone = function(eventObject){
// Insert your code here.
}
screenObj.addEventListener("allTransitionsInDone", listenerObject)
Event; broadcast when all "in" transitions applied to this screen have finished. The allTransitionsInDone event is broadcast by the Transition Manager associated with screenObj.
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;
}
|
|
|
|