Topic: Another SV only working in Firefox
I've read through a few threads here but can't seem to locate anything to resolve my issue. I have incorporated SV Pro into my website, in Firefox it works fine, in IE 7 it doesn't.
The code I use to call the galleries is:
var myMCL:MovieClipLoader = new MovieClipLoader();
var myListener:Object = new Object();
myMCL.addListener(myListener);
myListener.onLoadProgress = function(target_mc:MovieClip, loadedBytes:Number, totalBytes:Number) {
_level50._visible = true;
var preloadPercent:Number = Math.round((loadedBytes / totalBytes) * 100);
_level50.preloader.gotoAndStop(preloadPercent);
}
myListener.onLoadInit = function(target_mc:MovieClip) {
_level50._visible = false;
target_mc._x = 0;
target_mc._y = 100;
};
_root.xmlDataPath = "galleryxmlhere";
myMCL.loadClip("swfurlhere", "gallery");
stop();
[/code]
Can anyone suggest what is happening here to stop it from working in IE?