Hi
It looks like the resizing of a flash movie does not work in firefox.
When i export a swf with the publish settings : width=100%, height=100% the movie resizes well in the flash environnement and in ie but in firefox, the height stays constant (200 pixels !!?)
I tested with the code below (and the publish settings to size=100%)
[size=1]_root.createTextField(“txtTop”,1,0,0,200,30);
_root.createTextField(“txtBot”,2,Stage.width-200,Stage.height-30,200,30);
txtTop.border=txtBot.border=true;
txtTop.onResize= function () {
this.text=“Stage.width=”+Stage.width;
}
txtBot.onResize= function () {
this._x=Stage.width-this._width;
this._y=Stage.height-this._height;
this.text=“Stage.height=”+Stage.height;
}
Stage.align=“TL”;
Stage.scaleMode = “noScale”;
Stage.addListener(txtTop);
Stage.addListener(txtBot);[/size]
I have the same bugs with this example
http://www.kirupa.com/developer/mx2004/swf/myfile.html
From this tutorial :
http://www.kirupa.com/developer/mx2004/fullscreen.htm
I use flash mx 2004 and firefox 1.0.2
Does anybobody knows a solution to this issue ?
Is it just a bug of the flash plugin in firefox ?
Thanks for your answers and for this wonderfull site !