blob: 8e7dbe40189c80c7ad583d20d60123a91da8173e [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<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/mx"
backgroundColor="0x999999">
<fx:Style>
@namespace s "library://ns.adobe.com/flex/spark";
@namespace mx "library://ns.adobe.com/flex/mx";
@font-face{
src: url("../../../../../Assets/Fonts/PT_Serif/PT_Serif-Web-Regular.ttf");
fontFamily: myArial;
embedAsCFF: true;
}
@font-face{
src: url("../../../../../Assets/Fonts/PT_Serif/PT_Serif-Web-Bold.ttf");
fontWeight: bold;
fontFamily: myArial;
embedAsCFF: true;
}
@font-face{
src: url("../../../../../Assets/Fonts/PT_Serif/PT_Serif-Web-Italic.ttf");
fontStyle: italic;
fontFamily: myArial;
embedAsCFF: true;
}
s|Button{
fontAntiAliasType: "normal";
fontFamily: myArial;
fontSize: 12;
fontLookup: "embeddedCFF";
}
</fx:Style>
<s:layout>
<s:BasicLayout/>
</s:layout>
<fx:Declarations>
<s:Move3D id="mover" zTo="-50" xTo="150" yTo="150" duration="2000" target="{button1}" applyChangesPostLayout="false" applyLocalProjection="false" />
</fx:Declarations>
<s:Button
id="button1"
x="100" y="100" z="-100"
width="100" height="100" click="mover.play()"
label="TARGET" />
</s:Application>