Scrolling dynamic-created MC's

I dynamicly create MCs and give them names and URL’s through the XML i load, but how can I scroll them? I can display 10per page, but I want a scroller so I can view the rest for instance.
Any help trouly appreciated.

Thanks

//start generate filelist
GenerateMenu = function() {
    for (var i=1; i<_root.total; i++) {
        this.attachMovie("menuitem","item"+i, i, {_x:277, _y:(20*i)+220});
        this["item"+i].staffer.text = _root.file*.slice(6);
    }
};
//end filelist