![]() ![]() | |
Flash Player 6.
Stage.addListener(myListener)
myListener An object that listens for a callback notification from the Stage.onResize event.
Nothing.
Method; detects when a SWF file is resized (but only if Stage.scaleMode = "noScale"). The addListener() method doesn't work with the default movie scaling setting ("showAll") or other scaling settings ("exactFit" and "noBorder").
To use addListener(), you must first create a listener object. Stage listener objects receive notification from Stage.onResize.
This example creates a new listener object called myListener. It then uses myListener to call onResize and define a function that will be called when onResize is triggered. Finally, the code adds the myListener object to the callback list of the Stage object. Listener objects allow multiple objects to listen for resize notifications.
myListener = new Object();
myListener.onResize = function () { ... }
Stage.scaleMode = "noScale"
Stage.addListener(myListener);
Stage.onResize, Stage.removeListener()
![]() ![]() | |