Flash fullscreen
Flash fullscreen
Out of context: Reply #4
- Started
- Last post
- 4 Responses
- ********0
function initStageListener()
{
stageListener = new Object();
stageListener.onResize=function... {
updateSizeFunction();
};
Stage.addListener(stageListener...
updateSizeFunction();
}initStageListener();
function updateSizeFunction(){
_global.myStageHeight = Stage.height;
_global.myStageWidth = Stage.width;}
- your two global variables there will allow you to do whatever you need in placing items.********
- your two global variables there will allow you to do whatever you need in placing items.