[F8] Whisper's...fullScreen...external files
I must have read about 50 threads pertaining to the following, but couldn't find any answers:
I have managed to implement the fullScreen for my project, but can't figure out, for the life of me, how to bring in external files that center just as nicely as the internal content, when resizing the browser...
For bringing in external content, I'm using this method:
Code:
function preload(url, n) {
this.createEmptyMovieClip("controller_mc", 1);
loadMovieNum(url, n);
controller_mc.onEnterFrame = function() {
if (mc == undefined) {
var mc = eval("_level"+n);
}
var bl = mc.getBytesLoaded();
var bt = mc.getBytesTotal();
if (bt>0) {
// if the movie has started loading
var percentage = Math.round(bl/bt*100);
trace(percentage);
if (bl>=bt) {
// the movie has finished loading
// position it
//mc._x += (origX- mc._x)/2;
//mc._y += (origY-mc._y)/2;
delete this.onEnterFrame;
// delete the method
}
}
};
}
preload("slider.swf", 2);
What is eluding me?????
Desparately hoping for some input...thank you in advance.