I found the tutorial on how to create a photo album with thumbnails using XML. However the only thing that i shows me is to create it with a scroller. I made some modifications to thinking I was going to be able to turn it into a grid but everything that I have tried is not working. Can someone please help!!!1
function thumbnails_fn (k) {
thumbnail_mc.createEmptyMovieClip ("t" + k, thumbnail_mc.getNextHighestDepth ());
tlistener = new Object ();
tlistener.onLoadInit = function (target_mc) {
target_mc._x = _x + (target_mc._width + 5) * k;
target_mc._y = _y + (target_mc._height + 5) * k;
target_mc.pictureValue = k;
target_mc.onRelease = function () {
p = this.pictureValue - 1;
nextImage ();
};
target_mc.onRollOver = function () {
this._alpha = 50;
thumbNailScroller ();
};
target_mc.onRollOut = function () {
this._alpha = 100;
};
};
image_mcl = new MovieClipLoader ();
image_mcl.addListener (tlistener);
image_mcl.loadClip (thumbnails[k], "thumbnail_mc.t" + k);