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