blob: 0bc8194b86506b51f71a6190ec6d939bed6bc3dc [file] [log] [blame]
<?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[
[Embed(source="../../../../Assets/Images/redrect.jpg")]
public var t1120:Class;
[Embed(source="../../../../Assets/Images/purplerect.jpg")]
public var dinosaur:Class;
[Embed(source="../../../../Assets/Images/orangerect.jpg")]
public var bear:Class;
[Embed(source="../../../../Assets/Images/bluerect.jpg")]
public var blueback:Class;
public var lengthValue:int;
[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>
<!-- Embed fonts for cross platform compatibility of bitmap compares. -->
<mx:Style>
@font-face {
src: url("../../../../Assets/Fonts/Open_Sans/OpenSans-Regular.ttf");
fontFamily: EmbeddedVerdana;
embedAsCFF: false;
}
@font-face {
src: url("../../../../Assets/Fonts/Open_Sans/OpenSans-Bold.ttf");
fontWeight: bold;
fontFamily: EmbeddedVerdana;
embedAsCFF: false;
}
@font-face {
src: url("../../../../Assets/Fonts/Open_Sans/OpenSans-Italic.ttf");
fontStyle: italic;
fontFamily: EmbeddedVerdana;
embedAsCFF: false;
}
global{
fontFamily: EmbeddedVerdana;
fontAntiAliasType: normal;
}
</mx:Style>
<mx:TextInput id="ti" />
<mx:Button id="btn" label="click" />
<mx:Box id="TileListParent" paddingLeft="5" paddingRight="5" paddingTop="5" paddingBottom="5">
<mx:TileList id="tl" />
</mx:Box>
</mx:Application>