Hi,
I made a gallery with some categories. For example: 4 photo’s in category 1, 2 photo’s in category 2, etc. Therefore, I make the xml like this:
<?xml version="1.0" encoding="UTF-8"?>
<gallery>
<picture category="Category 1">
<image thumbs="thumbs/img1.jpg"/>
<image thumbs="thumbs/img2.jpg"/>
<image thumbs="thumbs/img3.jpg"/>
<image thumbs="thumbs/img4.jpg"/>
</picture>
<picture category="Category 2">
<image thumbs="thumbs/img5.jpg"/>
<image thumbs="thumbs/img6.jpg"/>
</picture>
</gallery>
And I simply attach the category button:
var category:Array = new Array();
var myXML:XML = new XML();
myXML.ignoreWhite = true;
myXML.load("images.xml");
myXML.onLoad = function(success) {
if (success) {
for (j=0; j<myXML.firstChild.childNodes.length; j++) {
var btns:Object = catholder_mc.attachMovie("cat_btn", "cat_btn"+j, j, {_y:(j*110)});
category.push(myXML.firstChild.childNodes[j].attributes.category);
btns.cat_txt.text = category[j];
btns.Value = j;
var cat = this.firstChild.childNodes[j];
btns.onRelease = viewLinks;
}
} else {
trace("failed");
}
};
Then the viewLinks function, when a category button is pressed
function viewLinks() {
i = this.Value-1;
if (i<myXML.firstChild.childNodes.length-1) {
i++;
allthelinks = myXML.firstChild.childNodes*.childNodes;
for (k=0; k<allthelinks.length; k++) {
var img_btn:MovieClip = imgholder_mc.attachMovie("img_btn", "img_btn"+k, k, {_y:(k*30)});
**img_btn.thumb_holder.loadMovie("myXML.firstChild.childNodes*.childNodes[k].attributes.thumbs");**
img_btn.Value = k;
img_btn.onRelease = released;
}
}
}
So far, the gallery is working. If one of the category button is pressed, the thumbnails of this category appear. However, I have a little bug that I can never solve.
As the example above, if I press on category 1 button, I get 4 thumbnails as it is stated on the xml. However, if I pressed category 2, the 2 thumbnails of category 2 appear, but the 2 thumbnails from category 1 do not disappear. So instead of 2 thumbnails as it is expected, I’ve got 4 thumbnails.
The question is how can I remove those movieclips? I hope it’s clear.
Thank you,
ndableg