Flash q?
Flash q?
Out of context: Reply #1
- Started
- Last post
- 3 Responses
- elkew0
not tested but its basically what you need to do:
// this stops full size flash from resizing
Stage.scaleMode = "noscale";
getURL("FSCommand:fullscreen", "true");// this makes sure its always centred
Stage.align = "C";
Stage.addListener(this);// create a listener that check for browser changes
listenerCheckStage = new Object();
listenerCheckStage.onResize = function() {
// you then add script here that reacts to browse size changes
myBottomAlignedMc._y = (Stage.height/2)-myBottomAligned...
};// activate listener
Stage.addListener(listenerCheckS...