Hi I’m loading external jpgs into an empty MC on the stage. They load sucessfully but, the image refuses to show up in safari and in Firefox. They show up in Ie.I created the site on a pc and test them on macs, but on both platforms the images do not appear in Safari or Firefox. and only on the pc In IE does the image show up at all. Here is the code:
///////LOAD MAINiMAGE
function startLoading(whichImage) {
mainImage.emptyMe.unloadMovie();
loadMovie(whichImage, “_root.mainImage.emptyMe”);
_root.onEnterFrame = function() {
infoLoaded = _root.mainImage.emptyMe.getBytesLoaded();
infoTotal = _root.mainImage.emptyMe.getBytesTotal();
percentage = Math.floor(infoLoaded/infoTotal*100);
_root.mainImage.txto.text = percentage+“00”;
clearInterval(mainFde);
if (percentage>=100){
delete this.onEnterFrame;
_root.mainImage.txto.text =“loaded”
_root.mainImage.emptyMe.alphaTo(100, .2);
grid_container._alpha =100;
videoClip.alphaTo(0, .8, “linear”);
_root.videoClip.ayo1Clip.stop();
//
_root.mainImage.emptyMe.tween("_height", Stage.height, 1.0, “easeoutExpo”);
_root.mainImage.emptyMe.tween("_width", Stage.width, 1.0, “easeoutExpo”);
//
var mainFde:Number;
timeFde = function(){
_root.desigBtn.backColor.alphaTo(100,3.5);
_root.mainImage.emptyMe.alphaTo(0, 1.8,“linear”);
block._alpha=100;
trace(“finished fadingOut”);
_root.mainImage.txto.text = “”;
_root.desigBtn.alphaTo(100,2);
grid_container._alpha =0;
videoClip.alphaTo(100, .8, “linear”);
_root.videoClip.ayo1Clip.play();
clearInterval(mainFde);
trace(mainFde);
}
mainFde =setInterval(this,“timeFde”,4500);
}
};
}
////////
Any help would be appreciated.
rmcnaugh