Hello there! I bought an xml flash template and i am trying to modify it.
In main.fla file there is a layer named functions. At this layer there is actionscript code where i saw this part:
function loadImages () {
var images:XML = new XML ();
images.ignoreWhite = true;
images.onLoad = function (success) {
if (success) {
var xml:XMLNode = this.firstChild;
totalImages = xml.childNodes.length;
for (i = 0; i < xml.childNodes.length; i++) {
var imagesTitle:String = xml.childNodes*.childNodes[0].childNodes[0].nodeValue;
var imagesLarge:String = xml.childNodes*.childNodes[1].childNodes[0].nodeValue;
var imagesTmb:String = xml.childNodes*.childNodes[2].childNodes[0].nodeValue;
var imagesDesc:String = xml.childNodes*.childNodes[3].childNodes[0].nodeValue;
//
bottomBar.rightSide.imageTxt.txt.autoSize = true;
bottomBar.rightSide.imageTxt.txt.text = “1”;
//
bottomBar.rightSide.totalTxt.txt.autoSize = true;
bottomBar.rightSide.totalTxt.txt.text = totalImages;
//
displayPositions ();
//
imageTitleArr.push (imagesTitle);
imagesArr.push (imagesLarge);
imageDescArr.push (imagesDesc);
//
tmbs.containerTmbs.attachMovie (“attach”,“attach” + i,i);
tmbs.containerTmbs[“attach” + i]._x = i * 30;
//
loadThumbnails (imagesTmb,tmbs.containerTmbs[“attach” + i].picture);
loadThumbnails (imagesTmb,tmbs.containerTmbs[“attach” + i].largeTmb.picture);
//
contentBox.contentBox_text.catText.text = categoryTitleForContent;
contentBox.contentBox_text.titleText.text = xml.childNodes[0].childNodes[0].childNodes[0].nodeValue;
contentBox.contentBox_text.descText.htmlText = xml.childNodes[0].childNodes[3].childNodes[0].nodeValue;
contentBox.contentBox_text.descText.autoSize = true;
myListenerload.onResize ();
//
tmbs.containerTmbs[“attach” + i].bt.idInstance = i;
//
tmbs.containerTmbs[“attach” + i].bt.onRelease = function () {
//
cursorArr = this.idInstance;
//
for (a = 0; a < totalImages; a++) {
if(tmbs.containerTmbs[“attach” + a].back._tint == color){
tmbs.containerTmbs[“attach” + a].bt.enabled = true;
tmbs.containerTmbs[“attach” + a].back._tint = 0x353535;
}
//
if(a > 0){
if(a == totalImages - 1){
tmbs.containerTmbs[“attach” + cursorArr].gotoAndPlay(“close”);
tmbs.containerTmbs[“attach” + cursorArr].bt.enabled = false;
tmbs.containerTmbs[“attach” + cursorArr].back._tint = color;
}
}
}
//
abortSlideShow ();
//
bottomBar.rightSide.imageTxt.txt.autoSize = true;
bottomBar.rightSide.imageTxt.txt.text = cursorArr + 1;
//
displayPositions ();
//
contentBox.contentBox_text.catText.text = categoryTitleForContent;
contentBox.contentBox_text.titleText.text = imageTitleArr[cursorArr];
contentBox.contentBox_text.descText.htmlText = imageDescArr[cursorArr];
contentBox.contentBox_text.descText.autoSize = true;
myListenerload.onResize ();
//
ZigoEngine.doTween (imageContainer,’_alpha’,0,1,“easeOutExpo”,0,function () {
loadBitmapSmoothed (imagesArr[cursorArr],imageContainer);
});
};
}
}
loadBitmapSmoothed (imagesArr[cursorArr],imageContainer);
};
images.load (“website_xml_imagegallery_xml/category1.xml”);
}
My problem is:
When i push the image gallery from the main menu, then the image_gallery.swf loads. There, i have 2 categories with photos, each of whom loads title and description of images from website_xml_imagegallery_xml/category1.xml and website_xml_imagegallery_xml/category2.xml. My problem is that whether i open a photo from one category or from the second category, the title and the description remain the same as the first category’s. I figured out that the title and the descrption of the first photo of the second category is the same as the title and the description of the first photo of the first category and this depends of what i am using at the last line of the attached code:
images.load (“website_xml_imagegallery_xml/category1.xml”);
So, if i write category2.xml instead of category1.xml, then the first photo of the first category will have the same title and same description as the first photo of the second category.
It seems like each category cannot read from its category.xml. Look at the xml files as well.
Thank you in advance