show/hide this revision's text 2 deleted 82 characters in body

One way to do it would be to create a dynamic function.

Something like this. (I'm basing this on my experience with other ECMAScript-based languages, you might want to double-check to make sure this works.)

for ( var i=0; i<thumbs.length; i++)
{
        var num = i;
        Core.addEventListener(thumbs[i], "click",  new function(evt){
            Slide.thumbClick(num);
        });
}

Of course, some might consider this sloppy under some circumstances, but it works.

show/hide this revision's text 1

One way to do it would be to create a dynamic function.

Something like this. (I'm basing this on my experience with other ECMAScript-based languages, you might want to double-check to make sure this works.)

for ( var i=0; i<thumbs.length; i++)
{
        var num = i;
        Core.addEventListener(thumbs[i], "click",  new function(evt){
            Slide.thumbClick(num);
        });
}

Of course, some might consider this sloppy under some circumstances, but it works.