| <?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" minWidth="955" minHeight="600" |
| xmlns:styleTest="assets.styleTest.*"> |
| |
| <fx:Declarations> |
| <!--test create style CSS declaration using styleManager API, and apply it to Class selector.--> |
| <styleTest:ADVStyleTestClass id="createClassStyleTest" |
| styleName="myStyle" |
| teststyle_1_string_noinh="testString" |
| teststyle_7_format_color_noinh="0x334455" |
| /> |
| </fx:Declarations> |
| |
| <fx:Style> |
| |
| .myStyle { |
| teststyle_6_format_time_noinh : 1111; |
| } |
| </fx:Style> |
| |
| <fx:Script> |
| <![CDATA[ |
| import assets.styleTest.ADVStyleTestConstants; |
| |
| import mx.effects.Effect; |
| import mx.effects.EffectInstance; |
| import mx.events.FlexEvent; |
| import mx.styles.IStyleManager2; |
| |
| private var myStyleManager:IStyleManager2 ; |
| |
| public function testClassStyle():void { |
| //test create style CSS declaration using styleManager API, and apply it to Class selector. |
| |
| var myDynStyle:CSSStyleDeclaration = new CSSStyleDeclaration(); |
| myDynStyle.setStyle('teststyle_1_string_noinh', 'styleMgrDyn2'); |
| myDynStyle.setStyle('teststyle_2_number_noinh', 222.333); |
| myDynStyle.setStyle('teststyle_6_format_time_noinh', 2014); |
| |
| styleManager.setStyleDeclaration(".myStyle", myDynStyle, true); |
| } |
| |
| ]]> |
| </fx:Script> |
| |
| <s:Label id="label" text="{getStyle('teststyle_12_enum_string_inh')}" /> |
| |
| </s:Application> |