How do I edit the way that files are pulled in via XML ?
to edit the way the image is pulled try these edits:
on frame 2 of the burns gallery movie clip,
line 307
change it from:
image_mcl.loadClip(“images/”folder”/”galleryNode.childNodes[galleryID].childNodes[burns_num].firstChild.firstChild.nodeValue”.jpg”,myTar);
to:
image_mcl.loadClip(galleryNode.childNodes[galleryID].childNodes[burns_num].firstChild.firstChild.nodeValue,myTar);
then, whatever you put in the image node will be the path of your image. for instance: autumn
would be images/autumn.jpg
AND
on line 122 in the menu MC there is a line in the buildthumbs function that looks like this:
loadThumb(“images/”_parent.galleryNode.childNodes[_parent.galleryID].attributes.galleryFolder”/”_parent.galleryNode.childNodes[_parent.galleryID].childNodes[i].firstChild.firstChild.nodeValue”.jpg”,thumbClip.holder);
change it to:
loadThumb(_parent.galleryNode.childNodes[_parent.galleryID].childNodes[i].firstChild.firstChild.nodeValue,thumbClip.holder);

172 Purchases
58 Comments