I am making a liquid flash site with a video player which loads within the central movieclip. When the site loads everything sits in place perfectly, however if the browser is rescaled in anyway the external swf pushes up to the top of the screen and stays there permanently.
This is the link to the site:
http://www.khawkinsdesign.com/test/website.html
I have no idea why this is occuring and was wondering if someone could help me with this. It’s not the liquid layout code for the mc as this rescales fine, just the external swf doesn’t.
This is the code I am using to load the external swf also:
var Xpos:Number = 0.5;
var Ypos:Number = 0.5;
var swf:MovieClip;
var loader:Loader = new Loader();
var defaultSWF:URLRequest = new URLRequest(“flashmo_215_video_player.swf”);
loader.load(defaultSWF);
loader.x = Xpos;
loader.y = Ypos;
addChild(loader);
As ever your help would be greatly appreciated.