Before, my thumbnails were all just in "gallery" and I was able to refer my thumbnails using the following actionscript 3 line:
Code:
xmlList = xml.children();
Now that I've divided my xml thumbnails into categories (see below), my actionscript 3 won't pull up any of the thumbnails. How do I modify the line of code so that it pulls them all up?
Code:
<gallery>
<aliens>
<image source="Gort.jpg" thumb="Gort_t.jpg>
<image source="ET.jpg" thumb="ET_t.jpg">
</aliens>
<fish>
<image source="barracuda.jpg" thumb="baracuda_t.jpg">
<image source="starfish.jpg" thumb="starfish_t.jpg">
</fish>
</gallery>
In my