blob: 6fc881af97038f1999487528f2a1627385d211e4 [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 xmlns:mx="http://www.adobe.com/2006/mxml" >
<mx:Style>
@font-face{
src: url("../../../../Assets/Fonts/Open_Sans/OpenSans-Regular.ttf");
fontFamily: myVerdana;
embedAsCFF: false;
}
@font-face{
src: url("../../../../Assets/Fonts/Open_Sans/OpenSans-Bold.ttf");
fontWeight: bold;
fontFamily: myVerdana;
embedAsCFF: false;
}
@font-face{
src: url("../../../../Assets/Fonts/Open_Sans/OpenSans-Italic.ttf");
fontStyle: italic;
fontFamily: myVerdana;
embedAsCFF: false;
}
global{
fontAntiAliasType: "normal";
fontFamily: myVerdana;
}
</mx:Style>
<mx:Script>
<![CDATA[
import mx.styles.StyleManager;
import mx.events.StyleEvent;
[Bindable]
private var myArray:Array = [{toy:"Snowman", data: 0}, {toy:"Christmas Ornament", data: 1}, {toy:"Christmas Tree", data: 0},
{toy:"Carols", data: 4}];
public var myevent:IEventDispatcher;
public function init(): void
{
myevent = StyleManager.loadStyleDeclarations("assets/windowsXP2.swf");
}
public function doUnload(): void
{
StyleManager.unloadStyleDeclarations("assets/windowsXP2.swf");
}
]]>
</mx:Script>
<mx:Button label="unload Windows styles" click="doUnload()" />
<mx:Label text="Click on the button above. Ensure that all of the default styles return" />
<mx:List id="list1" width="400" >
<mx:dataProvider>
<mx:String>Snowmen</mx:String>
<mx:String>Candy Canes</mx:String>
<mx:String>Ribbon</mx:String>
<mx:String>Gingerbread</mx:String>
</mx:dataProvider>
</mx:List>
<mx:Label id="label1" text="Here is a label that should be Blue." />
</mx:Application>