User Guide

Screen class (Flash Professional only) 659
Screen.allTransitionsOutDone
Availability
Flash Player 6 (6.0 79.0).
Edition
Flash MX Professional 2004.
Usage
on(allTransitionsOutDone) {
// your code here
}
listenerObject = new Object();
listenerObject.allTransitionsOutDone = function(eventObject){
// insert your code here
}
screenObj.addEventListener("allTransitionsOutDone", listenerObject)
Description
Event; broadcast when all “out” transitions applied to the screen have finished. The
allTransitionsOutDone event is broadcast by the Transition Manager associated with
screenObj.
See also
Screen.currentFocusedScreen
Screen.currentFocusedScreen
Availability
Flash Player 6 (6.0 79.0).
Edition
Flash MX Professional 2004.
Usage
myScreen.currentFocusedScreen
Description
Static property (read-only); returns a reference to the “leafmost” Screen object that contains the
global current focus. Leafmost refers to the screen that is furthest away from the root screen in the
screen hierarchy. The focus may be on the screen itself, or on a movie clip, text object, or
component inside that screen. This property defaults to
null if there is no current focus.
For example, assume you have a runtime screen hierarchy that looks like this:
presentation
screen1
subscreen1_1
mymovieclip
myUIButton