How is this done? Help required!

Hello, I’m new here, so hello everyone :alien2:

I would like to know if any of you know how to make this thing with the background like www.hi-res.net do. When you scale your window, the background automatically adapts itself to fit the new window size with no white gaps between the image and the browser’s window.

Does anyone have a clue on how this was done?

And is it possible to place a flash movie in a html page without the “white frame”, i mean, without that space between the animation and the browser limits?

Thanks in advance. Great site. Great help!

I got this from a nother forun but i dont get it mayby you cann figur it out?


Hi Mikael,
you do load the first with the size in the html object tag, usualy 100% * 100%.

Then you load new movies into an empty movie clip with this:

Code:
_root.createEmptyMovieClip(instanceName, depth);
instanceName.loadMovie(“moviename.swf”);
instanceName._x=xPosition;
instanceName._y=yPosition;
instanceName._xscale=scalingInPercent;
instanceName._yscale=scalingInPercent;

Just replace my words with real values, and you will have what you’ve been asking for.