Hello guys, long time no see,
I have a small problem i must make a flash gallery that supports pagination, i searched in kirupa’s forum, found some threads, but i didn’t found the answer for my problem.
I have a xml that contains 30 pictures, i parse (read) in flash and i attach some mcs that loads those pictures. I split the pictures in 5 pages, 1 | 2 | 3 | 4 | 5 |. Until know no problems but when i press 2 the mcs 7 - 12 are shown after the 1 - 6 mcs. What i want is that the mcs 7 - 12…to appear in the same place as the mcs 1 - 6.
I have this code:
public function xmlLoad(displayPage:Number)
{
this.nodes = this.xml.firstChild.childNodes;
this.total = this.nodes.length;
this.numPage = Math.floor (total / perPage);
this.displayMax = Math.min ((displayPage + 1) * this.perPage, total);
var init:Number = displayPage * this.perPage;
for(var k:Number = 0; k<this.lastMc; k++)
{
var mc:MovieClip = _root.thumbHolder_mc["_item" + k];
mc.removeMovieClip ();
}
for(var i:Number = init; i < this.displayMax; i++)
{
this.firstMC = displayPage * this.perPage;
this._thumb = this.attachMovie("_item","_item"+i,i);
this._thumb._x = Math.floor(i / 3) * (this._thumb._width + this.spacer);
this._thumb._y = Math.floor(i % 3) * (this._thumb._height + this.spacer);
this._thumb._title._title.text = this.nodes*.attributes.title;
this._thumb._thumb.loadMovie(this.nodes*.attributes.thumbSLink);
this._thumb.id = i;
this._thumb.onRelease = Delegate.createExtendedDelegate(this._thumb,this.Release,[this._thumb.id]);
_root.description_mc._description = this.nodes[0].attributes.description;
}
this.lastMc = this.displayMax;
}
[SIZE=1]**** The script is done in class, but any advice are welcome how to resolve this problem!*[/SIZE]
Initial i call xmlLoad(0) and when i press the second button i call xmlLoad(1) and so on!
I know that the answer is near, but i to blind to see it!
Thank you in advance, btibia out :thumb2: