RE: [Flashcoders] thumbnail panel

2007-06-05 Thread Jesse Graupmann
// // // VERSION 1 // // var xspace = 20; var yspace = 20; var xmax = 400; var row = 0; var col = 0; var len = 10; for ( var i = 0; i len; i ++ ) { var depth = this.getNextHighestDepth(); var t = this.attachMovie ( box, box_ + i, depth ); var nx = ( t._width +

Re: [Flashcoders] thumbnail panel

2007-06-05 Thread ben deroo
you're a STAR Jesse. absolutely perfectly clean and simple!! thnks a million, I had spent a lot of time trying to find a solution based on knowledge I already had, but i simply did not know enough. Again, thanks, Ben On 6/5/07, Jesse Graupmann [EMAIL PROTECTED] wrote: // // // VERSION

Re: [Flashcoders] thumbnail panel

2007-06-04 Thread Paul V.
Ben, One problem I see with the code right away is this. You are only going to run your second level thumb nails though that if statement when the previous thumb_x is 400 That means after placing the first thumb on the second row, your if(){ code } doesn't get read. I would have a look at