Scrolling multidimensional arrays?

Hi,

Here’s the code I’m using to generate a multidimensional array. This function is called through the xml loader:

function playlistdata(k) {
//attach the container clip
attachMovie(“videodesc”, “videodesc”+k, k, {_x:xPos, _y:yPos});
//increase the y postion each time
yPos += this[“videodesc”+k]._height+5;
//add the information
this[“videodesc”+k].videotitle.text = vtitle[k];
this[“videodesc”+k].videodescription.text = desc[k];
this[“videodesc”+k].videolink.text = link[k];
this[“videodesc”+k].videocategory.text = category[k];
this[“videodesc”+k].videocopyright.text = copyright[k];
this[“videodesc”+k].linkurl.onRelease = function() {
getURL(""+link[k]+"", “_blank”);
};
}
I got some references from the ‘multidimensional array and attachmovie’ tutorial on this site. But I need to be able to scroll these items since the height is rather large and there can be an n number of items. How do I attach a scroller to this? I hope I’m clear about what I need to do.

Any help is appreciated and thanks in advance! :wasted: