我有一个Flash幻灯片,播放XML文件中列出的SWF。我希望在显示当前的SWF时加载即将到来的SWF。我已经尝试了LoadMovie
和LoadMovieNum
的各种组合,包括创建一个空的影片剪辑,但有些东西我还没有得到。
现在,在完成所有文件的第一轮之后,它会从幻灯片顺利过渡到幻灯片,但我希望它能够预先加载,以便在第一次没有“正在加载...”屏幕时进行过渡
可在此处查看:slideshow
我应该在哪里放LoadMovie
行来加载下一个文件(image[p+1]
),它应该如何显示?
function loadXML(loaded) {
if (loaded) {
xmlNode = this.firstChild;
image = [];
description = [];
total = xmlNode.childNodes.length;
for (i=0; i<total; i++) {
image[i] = xmlNode.childNodes[i].childNodes[0].firstChild.nodeValue;
description[i] = xmlNode.childNodes[i].childNodes[1].firstChild.nodeValue;
}
firstImage();
} else {
content = "file not loaded!";
}
}
xmlData = new XML();
xmlData.ignoreWhite = true;
xmlData.onLoad = loadXML;
xmlData.load("xmlfile.xml");
/////////////////////////////////////
back_btn.onRelease = function ()
{
backImage();
};
next_btn.onRelease = function ()
{
nextImage();
};
p = 0;
function nextImage() {
if (p<(total-1)) {
p++;
trace(this);
_root.mc_loadfile.loadMovie (image[p]);
_root.movie_name.text = image[p];
next_btn._visible = true;
back_btn._visible = true;
if (getBytesLoaded() == getBytesTotal())
slideshow();
}
else if (p == (total-1)) {
p = 0;
firstImage();
}
}
function backImage() {
clearInterval(myInterval);
if (p>0) {
--p;
_root.mc_loadfile.loadMovie (image[p]);
_root.movie_name.text = image[p];
next_btn._visible = true;
if (p != 0) {
back_btn._visible = true;
}
else {
back_btn._visible = false;
}
slideshow();
}
}
我很感激任何帮助。