在网页代码里面加上 <param name="SCALE" value="noscale">
在flash里面要100%显示的元件上加
onClipEvent (enterFrame)
{
if (_width != Stage.width)
{
_width = Stage.width;
} // end if
if (_height != Stage.height)
{
_height = Stage.height;
} // end if
}
flash里面的背景设置-----在场景里面的背景元件坐标x=0 y=0 宽度和高度和flash一样...在背景元件的下一层级坐标 x= -(flash影片宽度/2) y= -(flash影片高度/2)
比如说,一个400x300的flash,背景在场景里面的坐标是 0.0 在下一层级的坐标就是 -200,-150.