In this tutorial http://www.kirupa.com/developer/mx2004/thumbnails5.htm you all explain how to make a Flash Thumbnail Photo Gallery. I am designing a bigger photo gellery based on this code how do I have the photo gallery to list 2 rows of thumbs 5 accross and 2 rows. This code is the code that designs the thumbnail movie clip.
[COLOR=silver]function thumbnails_fn(k) {[/COLOR] [COLOR=silver]thumbnail_mc.createEmptyMovieClip(“t”+k, thumbnail_mc.getNextHighestDepth()); [/COLOR][COLOR=silver]tlistener = new Object(); [/COLOR][COLOR=silver]tlistener.onLoadInit = function(target_mc) { [/COLOR][COLOR=silver][COLOR=red]target_mc._x = hit_left._x+(target_mc._width+5)*k;[/COLOR] [/COLOR][COLOR=silver]target_mc.pictureValue = k; [/COLOR][COLOR=silver]target_mc.onRelease = function() { [/COLOR][COLOR=silver]p = this.pictureValue-1; [/COLOR][COLOR=silver]nextImage(); [/COLOR][COLOR=silver]}; [/COLOR][COLOR=silver]target_mc.onRollOver = function() { [/COLOR][COLOR=silver]this._alpha = 50; [/COLOR][COLOR=silver]thumbNailScroller(); [/COLOR][COLOR=silver]}; [/COLOR][COLOR=silver]target_mc.onRollOut = function() { [/COLOR][COLOR=silver]this._alpha = 100; [/COLOR][COLOR=silver]}; [/COLOR][COLOR=silver]}; [/COLOR][COLOR=silver]image_mcl = new MovieClipLoader(); [/COLOR][COLOR=silver]image_mcl.addListener(tlistener); [/COLOR][COLOR=silver]image_mcl.loadClip(thumbnails[k], “thumbnail_mc.t”+k); [/COLOR][COLOR=silver]} [/COLOR]