Xml and flash photo gallery help

Hello! I’m trying to add new functions to the xml photo gallery tutorial (http://www.kirupa.com/developer/mx20...otogallery.htm).

1_Add a new button (or maybe use the emptymovieclip with a listenerObject) on release get url _blank to download a high resolution pdf of that file.

2_Add a new dynamic multiline text field on stage (list.txt) to create a list of all files include in this gallery (name + date)

Here’s a part of my xml file:

<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<images>
<pic>
<image>../gaspor/presse/img/presse1.jpg</image>
<titre>Flaveurs</titre>
<ladate>Automne 2001</ladate>
<pdf>../gaspor/presse/pdf/presse1.pdf</pdf>
</pic>
<pic>
<image>../gaspor/presse/img/presse2.jpg</image>
<titre>La Presse (Actuel)</titre>
<ladate>Automne 2002</ladate>
<pdf>../gaspor/presse/pdf/presse2.pdf</pdf>
</pic>
...
</images>

Here my as:

this.createEmptyMovieClip("picture", 299);

function loadXML(loaded) {

if (loaded) {

xmlNode = this.firstChild;
image = [];
titre = [];
ladate = [];
pdf = [];

total = xmlNode.childNodes.length;
for (i=0; i<total; i++) {

image* = xmlNode.childNodes*.childNodes[0].firstChild.nodeValue;
titre* = xmlNode.childNodes*.childNodes[1].firstChild.nodeValue;
ladate* = xmlNode.childNodes*.childNodes[2].firstChild.nodeValue;
pdf* = xmlNode.childNodes*.childNodes[3].firstChild.nodeValue;
}
firstImage();

} else {

content = "file not loaded!";

}

}

xmlData = new XML();
xmlData.ignoreWhite = true;
xmlData.onLoad = loadXML;
xmlData.load("http://www.papillondesign.ca/clients/gaspor/presse/xml/presse.xml");
/////////////////////////////////////
listen = new Object();
listen.onKeyDown = function() {

if (Key.getCode() == Key.LEFT) {

prevImage();

} else if (Key.getCode() == Key.RIGHT) {

nextImage();

}

};
Key.addListener(listen);
previous_btn.onRelease = function() {

prevImage();

};
next_btn.onRelease = function() {

nextImage();

};
/////////////////////////////////////
p = 0;
this.onEnterFrame = function() {

filesize = picture.getBytesTotal();
loaded = picture.getBytesLoaded();
preloader._visible = true;
if (loaded != filesize) {

preloader.preload_bar._xscale = 100*loaded/filesize;

} else {

preloader._visible = false;
if (picture._alpha<100) {

picture._alpha += 10;

}

}

};
function nextImage() {

if (p<(total-1)) {

p++;
if (loaded == filesize) {

picture._alpha = 0;
picture.loadMovie(image[p], 1);
titre_txt.text = titre[p];
ladate_txt.text = ladate[p];
hr.text = pdf[p];
picture_num();

}

}

}
function prevImage() {

if (p>0) {

p--;
picture._alpha = 0;
picture.loadMovie(image[p], 1);
titre_txt.text = titre[p];
ladate_txt.text = ladate[p];
hr.text = pdf[p];
picture_num();

}

}
function firstImage() {

if (loaded == filesize) {

picture._alpha = 0;
picture.loadMovie(image[0], 1);
titre_txt.text = titre[0];
ladate_txt.text = ladate[0];
hr.text = pdf[0];
picture_num();

}

}
function picture_num() {

current_pos = p+1;
pos_txt.text = current_pos+" / "+total;

}

Thanks Anyways!!