Что трейс выдает? Вы хоть както сами учавствуйте)))

Код:
function startSlideShow(success) {
if (success) {
rootNode = slides_xml.firstChild;
totalSlides = rootNode.childNodes.length;
firstSlideNode = rootNode.firstChild;
currentSlideNode = firstSlideNode;
currentIndex = 1;
updateSlide(firstSlideNode);
button.onPress = function(){
trace(rootNode.attributes.url);
getURL(rootNode.attributes.url, "_self")
}
}
}