Hi all,
I have been using the modified version of Kirupa’s XML Gallery as posted by ‘Scotty’ in post 19 of this thread…
…I am hosting the gallery externally, and loading it using ‘loadMovie’ into an empty movieclip.
Index.swf > Home.swf > Homeslideshow.swf
I have got the slideshow edited to suit my needs, and it loads perfectly upon first arriving at the home page.
However, the problem occurs when I have been on another page (which is another external swf - lets say 'Index.swf > About.swf) and then returned to the home page (and its slideshow).
The images do not seem to show up, however I can see the load bar and the captions loading fine. On the other hand, sometimes I find the images load, but almost as if the Swf has loaded itself again behind the one previously loaded.
There is obviously something (probably minor!) messing up, so please find attached my source files.
If anyone can resolve this issue it would be fantastic, and hopefully helpful to others who search the forum 
Thank you in advance for any help - it will be greatly appreciated.
Apologies for the bump - can anyone help out?
Thank you in advance!
Well, after searching around I decided to test out an alternative open source cross fade slideshow, to test it out…
http://whatdoiknow.org/archives/001629.shtml
…I’ve had the same findings - upon the first load (index.swf > home.swf > homeslideshow.swf) the slideshow works fine, it is only after returning to the ‘home.swf’ after visiting another external swf that I have problems.
Is it the code i am using to load in the secondary external swf? I tried the action script directly onto the home.swf and the same occured.

explain yourself… piece by piece…
lets understand the problem in detail
Hi, I have the same problem in my slide show. it looks like the problem is that the interval has not been clear so every time i come back to the slide show the pictures keep looking on top of each other.
i dont know how to solve the problem !!!
Does anyone know how to do it?
this is the code.
var id, current;
var k = 0, p = 0;
var slide = 1;
function loadXML(loaded) {
if (loaded) {
xmlNode = this.firstChild;
image = [];
description = [];
total = xmlNode.childNodes.length;
for (i=0; i<total; i++) {
image* = xmlNode.childNodes*.childNodes[0].firstChild.nodeValue;
description* = xmlNode.childNodes*.childNodes[1].firstChild.nodeValue;
}
id = setInterval(preloadPic, 100);
} else {
content = “file not loaded!”;
}
}
xmlData = new XML();
xmlData.ignoreWhite = true;
xmlData.onLoad = loadXML;
xmlData.load(“images/galeria/slides/galeria.xml”);
function preloadPic() {
clearInterval(id);
var con = picture.duplicateMovieClip(“con”+k, 9984+k);
con.loadMovie(image[p]);
preloader._visible = 1;
preloader.swapDepths(con.getDepth()+3);
con._alpha = 0;
var temp = _root.createEmptyMovieClip(“temp”+k, 99+k);
k++;
temp.onEnterFrame = function() {
var total = con.getBytesTotal();
var loaded = con.getBytesLoaded();
percent = Math.round(loaded/total*100);
preloader.preload_bar._xscale = percent;
if (con._width) {
preloader._visible = 0;
con.onEnterFrame = fadeIn;
if (slide) {
id = setInterval(nextImage, 5000);
}
delete this.onEnterFrame;
}
};
}
MovieClip.prototype.fadeIn = function() {
if (this._alpha<100) {
current._alpha -= 4;
this._alpha += 4;
} else {
current._visible = 0;
current = this;
delete this.onEnterFrame;
}
};
function nextImage() {
p<total-1 ? p++ : p=0;
desc_txt.text = description[p];
picture_num();
preloadPic();
}
preloadPic();
how are you navigating between pages?
visuals: fla or a picture?
i have a menu and a loader in the main movie (main.swf ) when i click to see the slide show in the menu the movie (slideshow.swf) is loaded into the loader in the main.swf all the other movies like contact.swf and info.swf there are all loaded into the main.swf The slide show are jpgs.
I have the same problem, has anyone been able to find a fix?