第一问题:希望你们能够提供帮助。 I m完全流氧化。
我制作了一个闪幻灯,把图像上载。 在对图像进行预载后,它着手装上外部闪电文档,然后是图像。 问题非常偶然,它实际上不会把图像装上眼光,我只看上去,但是它可能仍然装上外部的 s。 此外,它可能采取相反的做法,并装上图像,而不是装上外部 s。
我无法复制后者,尽管客户已几次通知。 对我来说,前者会发生,但很少发生。
这里是(我认为)相关法典:
function onXMLLoadComplete(e:Event):void {
// create new xml with the received data
xmlSlideshow = new XML(e.target.data);
// get total slide count
// misc xml data
info_holder.mcInfo.lbl_tagline.text = xmlSlideshow.misc.@tagline;
info_holder.mcInfo.goToUrl_btn.lbl_view.text = xmlSlideshow.misc.@view.toUpperCase();
intSlideCount = xmlSlideshow..img.length();
//trace(intSlideCount);
imageArray = new Array(intSlideCount);
for (var i:int = 0; i < intSlideCount; i++) {
//imageArray[i] = new URLRequest(xmlSlideshow..img[i].@src);
var loader:Loader = new Loader();
loader.load(new URLRequest(xmlSlideshow..img[i].@src));
//trace(xmlSlideshow..img[i].@src);
loader.contentLoaderInfo.addEventListener(Event.COMPLETE, onImageLoadComplete);
//loader.load(imageArray[i]);
}
}
function onImageLoadComplete(e:Event):void {
if (++numberOfImagesLoaded == intSlideCount) {
// animate the info bar and then
//trace(intSlideCount);
//trace(numberOfImagesLoaded);
info_holder.play();
// switch the first slide without a delay
// reset index of images
//load map div via jQuery
if (ExternalInterface.available) {
ExternalInterface.call( openMap );
}
intCurrentSlide = -1;
switchSlide(null);
}
}
现场是:http://www.奢侈uryportfolio.com。 - 看到你能复制上述问题吗?
感谢!