XML gallery:thumbs in a grid problem [renamed]

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);

http://www.kirupa.com/forum/showthread.php?t=204346 post # 12

scotty(-:

hi,

i hope this code will help you.

with regards
sandeep(^_^)

post 15

Thanks…:!:

This uses a scroll pane. How can I just make what I have scroll with out using any components and just jusing buttons.

hi

I think you are using flash scrollpane component. if you are not using that than kirupa has created very nice tutorial regarding hw to create ur scrollbar. Follow that tutorial you will definitely overcome ur problem.

with regards
sandeep(^_^)