Tiny Flash Вопрос - PullRequest
       6

Tiny Flash Вопрос

0 голосов
/ 21 августа 2009

У меня есть этот флэш-код - мне нужно добавить getURL (this.mainurl, "_self"); так что this.mainurl является динамическим значением из файла XML.

Может кто-нибудь показать мне, как сделать значение getURL динамическим

myPhoto = новый XML ();

myPhoto.ignoreWhite = true;

myPhoto.onLoad = function (success) {

//portfolioTag = this.firstChild;

numimages = this.firstChild.childNodes.length;

spacing = 32;

for (i=0; i<numimages; i++) {

this.picHolder = this.firstChild.childNodes [i];

this.thumbHolder = thumbnails.createEmptyMovieClip ("thumbnail" + i, i);

this.thumbHolder._x = i*spacing;

this.thumbLoader = this.thumbHolder.createEmptyMovieClip("thumbnail_image", 0);

this.thumbLoader.loadMovie(this.picHolder.attributes.thmb);

this.thumbHolder.mainurl = this.thumbHolder.attributes.mainurl;

this.thumbHolder.onRelease = function() {

    getURL(this.mainurl, "_self");
* * 1016};

}

}; * * тысяча двадцать-одна * * 1 022 myPhoto.load ( "/ вспышка / languages.xml"); * +1023 *

ФАЙЛ XML:

< image title = "Found" mainurl = "http://www.de." thmb =" \ flash \ image2.jpg "/>

1 Ответ

0 голосов
/ 21 августа 2009

myPhoto = новый XML (); myPhoto.ignoreWhite = true; myPhoto.onLoad = function (success) { // portfolioTag = this.firstChild; numimages = this.firstChild.childNodes.length; интервал = 35; для (я = 0; я

...