Download: main.mxml
- <?xml version="1.0" encoding="utf-8"?>
- <mx:Applicationxmlns:mx="http://www.adobe.com/2006/mxml"
- layout="vertical"
- verticalAlign="middle"
- backgroundColor="white">
- <mx:XMLid="imagesXML" source="images.xml" />
- <mx:Zoomid="zoom" />
- <mx:HBoxid="hBox">
- <mx:Repeaterid="rep"
- dataProvider="{imagesXML.image}">
- <mx:Imagesource="{rep.currentItem.@src}"
- toolTip="{rep.currentIndex}:{rep.currentItem.@alt}"
- completeEffect="{zoom}"/>
- </mx:Repeater>
- </mx:HBox>
- </mx:Application>
Download: images.xml
<?xml version="1.0" encoding="utf-8"?>
<images>
- <imagesrc="images/Button.png" alt="Button" />
- <imagesrc="images/ButtonBar.png" alt="ButtonBar" />
- <imagesrc="images/CheckBox.png" alt="CheckBox" />
- <imagesrc="images/ColorPicker.png" alt="ColorPicker" />
- <imagesrc="images/ComboBox.png" alt="ComboBox" />
- <imagesrc="images/DataGrid.png" alt="DataGrid" />
- <imagesrc="images/DateChooser.png" alt="DateChooser" />
- <imagesrc="images/DateField.png" alt="DateField" />
- </images>