insert the time out?insert the voice over?make the tumbhnails gallery?
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
layout="vertical"
verticalAlign="middle"
backgroundColor="white">
<mx:Script>
<![CDATA[
private function toggleImage():void {
if (rep.currentItem.visible)
rep.currentItem.visible=false
else
rep.currentItem.visible=true;
}
]]>
</mx:Script>
<mx:XML id="imagesXML" source="images.xml" />
<mx:Zoom id="zoom" />
<mx:HBox id="hBox">
<mx:Repeater id="rep"
dataProvider="{imagesXML.image}">
<mx:Image source="{rep.currentItem.@src}"
toolTip="{rep.currentIndex}:{rep.currentItem.@alt}"
completeEffect="{zoom}"
id="repImage"
maxWidth="100"
maxHeight="70"
click= maxHeight="{FlexGlobals.topLevelApplication.height}"
/>
</mx:Repeater>
</mx:HBox>
</mx:Application>