# Scrolling Movieclips

**URL:** https://forum.kirupa.com/t/scrolling-movieclips/190712
**Category:** flash
**Created:** [June 14, 2006, 2:54am UTC](https://forum.kirupa.com/t/scrolling-movieclips/190712 "2006-06-14T02:54:43Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![footballkid4](https://avatars.discourse-cdn.com/v4/letter/f/bcef8e/32.png) [@footballkid4](https://forum.kirupa.com/u/footballkid4)
#### Post date: [June 14, 2006, 2:54am UTC](https://forum.kirupa.com/t/scrolling-movieclips/190712/1 "2006-06-14T02:54:43Z")

</div>

The site I’m working on requires that I load a list of information (whether they be pictures, videos, games, etc.) from an XML file. The XML structure would be similar to this:

```auto
<?xml version="2.0"?>
<rss>
     <category>
          <categoryName>CatName</categoryName>
          <categoryItems>
               <item>
                    <![CDATA[//ITEM DATA HERE]]>
               </item>
          </categoryItems>
     </category>
</rss>

```

Now, getting the list of categories and items is the easy part, I could just use attachMovie(), and edit some of the movie elements inside, change the text, and place them how I need it. The hard part is…how would I add scrollbars when there are say…50 items? Not sure how or even if it will be possible, but I would like not to use a datagrid or listbox if I don’t have to.
