Is there buildin support for scrolling a listBox?

I have a list of images like this:
[java]layer childLayout=“vertical”
panel width=“100%” height=“10%” childLayout=“center” align=“center” >
text text=“LAKESIDE REST” font=“fonts/visitor.fnt” size=“32”/>
/panel>
control id=“listBoxStatic” name=“listBox” horizontal=“false” width=“*” height=“100%” childLayout=“vertical” visibleToMouse=“true”>

			image filename="texture/menu/selectworld/testworld_selected.png" visibleToMouse="true"  width="256px" height="100%w"/>
			image filename="texture/menu/selectworld/testworld_locked.png" visibleToMouse="true"  width="256px" height="100%w"/>
			image filename="texture/menu/selectworld/testworld_locked.png" visibleToMouse="true"  width="256px" height="100%w"/>
			image filename="texture/menu/selectworld/testworld_locked.png" visibleToMouse="true"  width="256px" height="100%w"/>
			image filename="texture/menu/selectworld/testworld_locked.png" visibleToMouse="true"  width="256px" height="100%w"/>
		/panel>
		effect>
      		onEndScreen name="fade" start="#ff" end="#00" length="300" startDelay="200" />
    	/effect>
	/control>	
/layer&gt;</blockquote> [/java] 

Now I want to be able to scroll this list of images, clicking one and selecting to display that “map” image. But the control doesn’t react to touch by just using this code…
How would I do to make this list scrollable and clickable?