<?xml version="1.0" encoding="utf-8"?>
<!---
Dogs Currey Input
-->
<s:Application
xmlns:fx = "http://ns.adobe.com/mxml/2009"
xmlns:s = "library://ns.adobe.com/flex/spark"
xmlns:mx = "library://ns.adobe.com/flex/halo"
minWidth = "1024"
minHeight = "768"
backgroundColor = "#cccccc"
viewSourceURL="srcview/index.html">
<fx:Style>
@font-face {
advancedAntiAliasing : "true";
embedAsCFF : "true";
font-family : "DogsCurryFont";
src : url("asset/font/MadokaRunes.ttf");
}
global {
focus-color : #990000;
}
.inuFont {
color : #000000;
font-family : DogsCurryFont;
font-lookup : embeddedCFF;
font-size : 50;
focused-text-selection-color : #990000;
padding-top : 10;
padding-right : 10;
padding-bottom : 10;
padding-left : 10;
}
</fx:Style>
<s:applicationComplete>
<![CDATA[
inuRET.setFocus();
]]>
</s:applicationComplete>
<s:VGroup verticalCenter="0" horizontalCenter="0">
<s:Label text="dogs currey input" styleName="inuFont" />
<s:RichEditableText id="inuRET" width="640" height="480" styleName="inuFont" />
</s:VGroup>
</s:Application>