| <?xml version="1.0" encoding="utf-8"?> |
| <!-- |
| |
| Licensed to the Apache Software Foundation (ASF) under one or more |
| contributor license agreements. See the NOTICE file distributed with |
| this work for additional information regarding copyright ownership. |
| The ASF licenses this file to You under the Apache License, Version 2.0 |
| (the "License"); you may not use this file except in compliance with |
| the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| |
| --> |
| <mx:Application backgroundColor="0xFFFFFF" backgroundImage="" height="375" width="500" xmlns:mx="http://www.adobe.com/2006/mxml" xmlns="*" > |
| <mx:Script> |
| <![CDATA[ |
| [Bindable] |
| [Embed(source="../../../../Assets/Images/greenrect.jpg")] |
| public var phone1:Class; |
| |
| [Bindable] |
| [Embed(source="../../../../Assets/Images/yellowrect.jpg")] |
| public var phone2:Class; |
| |
| [Bindable] |
| [Embed(source="../../../../Assets/Images/orangerect.jpg")] |
| public var phone3:Class; |
| |
| [Bindable] |
| [Embed(source="../../../../Assets/Images/bluerect.jpg")] |
| public var phone4:Class; |
| |
| [Bindable] |
| [Embed(source="../../../../Assets/Images/redrect.jpg")] |
| public var phone5:Class; |
| ]]> |
| </mx:Script> |
| <mx:Box id="TileListParent" paddingLeft="5" paddingRight="5" paddingTop="5" paddingBottom="5"> |
| <mx:TileList id="tl" height="250" width="400" |
| maxColumns="3" rowHeight="225" columnWidth="125" allowMultipleSelection="true"> |
| <mx:dataProvider> |
| <mx:Array> |
| <mx:Object label="0" icon="{phone1}"/> |
| <mx:Object label="1" icon="{phone2}"/> |
| <mx:Object label="2" icon="{phone3}"/> |
| <mx:Object label="3" icon="{phone4}"/> |
| <mx:Object label="4" icon="{phone5}"/> |
| <mx:Object label="5" icon="{phone1}"/> |
| <mx:Object label="6" icon="{phone2}"/> |
| <mx:Object label="7" icon="{phone3}"/> |
| <mx:Object label="8" icon="{phone4}"/> |
| <mx:Object label="9" icon="{phone4}"/> |
| <mx:Object label="10" icon="{phone5}"/> |
| </mx:Array> |
| </mx:dataProvider> |
| </mx:TileList> |
| <mx:TextInput text="{tl.selectedIndices}" /> |
| </mx:Box> |
| </mx:Application> |