| <?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/tinygreenrect.jpg")] |
| public var t1120:Class; |
| |
| [Embed(source="../../../../../Assets/Images/tinypurplerect.jpg")] |
| public var dinosaur:Class; |
| |
| [Embed(source="../../../../../Assets/Images/tinyorangerect.jpg")] |
| public var justbear:Class; |
| |
| [Embed(source="../../../../../Assets/Images/tinybluerect.jpg")] |
| public var blueback:Class; |
| |
| public var lengthValue:int; |
| |
| ]]> |
| </mx:Script> |
| |
| <mx:Style> |
| @namespace "library://ns.adobe.com/flex/mx"; |
| @font-face { |
| src: url("../../../../../Assets/Fonts/Cousine/Cousine-Regular.ttf"); |
| fontFamily: Cousine; |
| embedAsCFF: false; |
| } |
| @font-face { |
| src: url("../../../../../Assets/Fonts/Lobster_Two/LobsterTwo-Regular.ttf"); |
| fontFamily: Hancock; |
| } |
| |
| .customBackgroundAlpha { |
| backgroundAlpha: 0; |
| backgroundColor: #FF0000; |
| } |
| |
| .customBackgroundAlpha2 { |
| backgroundAlpha: 1; |
| backgroundColor: #FF0000; |
| } |
| |
| .customBackgroundColor { |
| backgroundColor: #0000FF; |
| } |
| |
| .customColor { |
| color: #FF0000; |
| } |
| |
| .customDisabledColor { |
| disabledColor: #FF0000; |
| } |
| |
| .customFontSize { |
| fontSize: 15; |
| } |
| |
| .customRollOverColor { |
| rollOverColor: #FF0000; |
| } |
| |
| .customSelectionColor { |
| selectionColor: #0000FF; |
| } |
| |
| .customTextDecoration { |
| textDecoration: "underline"; |
| } |
| |
| .customFontWeight { |
| fontWeight: "bold"; |
| } |
| |
| .customFontStyle { |
| fontStyle: "italic"; |
| } |
| |
| .customFontFamily { |
| fontFamily: "Cousine"; |
| } |
| </mx:Style> |
| |
| <mx:Style source="../../../../../Assets/Fonts/myStyles.css" /> |
| |
| |
| <mx:TextInput id="ti" /> |
| <mx:Button id="btn" label="click" /> |
| <mx:Box id="menuBarParent" paddingLeft="5" paddingRight="5" paddingTop="5" paddingBottom="5"> |
| <mx:MenuBar id="mb" /> |
| </mx:Box> |
| <mx:Box id="menuBarParent2" paddingLeft="5" paddingRight="5" paddingTop="5" paddingBottom="5"> |
| <MyMenuBar id="mb2" /> |
| </mx:Box> |
| |
| <mx:Canvas width="200" height="200" id="canvas1" > |
| <mx:MenuBar id="mb3" /> |
| </mx:Canvas> |
| </mx:Application> |