| <?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. |
| |
| --> |
| <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" |
| xmlns:comps="comps.*"> |
| |
| <fx:Style> |
| @namespace s "library://ns.adobe.com/flex/spark"; |
| @namespace mx "library://ns.adobe.com/flex/mx"; |
| |
| @font-face { |
| src: url("../../../../../Assets/Fonts/Open_Sans/OpenSans-Regular.ttf"); |
| fontFamily: MyArial; |
| embedAsCFF: true; |
| } |
| |
| @font-face { |
| src: url("../../../../../Assets/Fonts/Open_Sans/OpenSans-Italic.ttf"); |
| fontFamily: MyArial; |
| fontStyle: italic; |
| embedAsCFF: true; |
| } |
| |
| @font-face { |
| src: url("../../../../../Assets/Fonts/Open_Sans/OpenSans-Bold.ttf"); |
| fontFamily: MyArial; |
| fontWeight: bold; |
| embedAsCFF: true; |
| } |
| |
| @font-face{ |
| src: url("../../../../../Assets/Fonts/PT_Serif/PT_Serif-Web-Regular.ttf"); |
| fontFamily: CourierCFF; |
| embedAsCFF: true; |
| } |
| |
| @font-face{ |
| src: url("../../../../../Assets/Fonts/PT_Serif/PT_Serif-Web-Bold.ttf"); |
| fontWeight: bold; |
| fontFamily: CourierCFF; |
| embedAsCFF: true; |
| } |
| |
| s|RichEditableText{ |
| fontAntiAliasType: "normal"; |
| fontFamily: myArial; |
| fontSize: 12; |
| fontLookup: "embeddedCFF"; |
| } |
| |
| </fx:Style> |
| |
| <fx:Script> |
| <![CDATA[ |
| import flashx.textLayout.formats.TextLayoutFormat; |
| |
| import mx.events.FlexEvent; |
| public var fontFam:String = ""; |
| |
| public function getFontFamiliesList():void |
| { |
| |
| var rangeStart:int = 0;//Math.min(anchor, active); |
| var rangeEnd:int = 2;//Math.min(anchor, active); |
| var cursor:int = rangeStart; |
| |
| while (rangeStart <= rangeEnd) { |
| var format:TextLayoutFormat = ret1.getFormatOfRange(Vector.<String>(["fontFamily"]), cursor, rangeEnd); |
| |
| if (format != null && format.fontFamily != null) { |
| fontFam += format.fontFamily; |
| rangeEnd = cursor - 1; |
| cursor = rangeStart; |
| } else { |
| ++cursor; |
| |
| if (cursor > rangeEnd) { |
| break; |
| } |
| } |
| } |
| if(fontFam=="myArial") |
| { |
| cbx.selected=true; |
| } |
| dispatchEvent(new Event("TestDone")); |
| } |
| |
| |
| ]]> |
| </fx:Script> |
| |
| <s:VGroup x="20" y="20"> |
| <s:RichEditableText id="ret1"/> |
| </s:VGroup> |
| |
| <s:VGroup x="20" y="20"> |
| <comps:RET_inlineGraphic id="ret2" width="200" backgroundColor="0xFFCCFF"/> |
| <s:CheckBox selected="false" id="cbx" visible="false"/> |
| </s:VGroup> |
| </s:Application> |