Flash/Browser
Flash/Browser
Out of context: Reply #3
- Started
- Last post
- 5 Responses
- unfittoprint0
make your swf 100% [width+height]
include the following cod in your CSS styles tag [html head]:
body,html {
margin:0px;
padding:0px;
height:100%;
}the within you main movie's write this AS:
Stage.align = "T";
Stage.scaleMode = "noScale";
resizeListener = new Object();
resizeListener.onResize = function () {
trace("New width: " + Stage.width);
};
Stage.addListener(resizeListener...