I have a main swf in which i want to load some external swfs. I use the following actionscript on some empty movieclips:
onClipEvent(load) {
loadMovie(“ekstern.swf”,_root.slider.photo);
}
Each of the external swfs are based on the same as code (the simple photo gallery from Kirupa: http://www.kirupa.com/developer/mx/photogallery.htm).
My problem is that the different external swfs interfere with eachother. I have tried to adjust the as to avoid this but without any luck.
Is it possible to load the external swfs and make them “independent” and not affect eachother?
I hope it makes sense.
Thanks!!