| <!-- |
| |
| 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:Canvas xmlns:fx="http://ns.adobe.com/mxml/2009" |
| xmlns:mx="library://ns.apache.org/royale/mx" |
| |
| width="100%" height="100%"> |
| |
| <mx:Label preinitialize="preInitialize(event)" initialize="onInitialize(event)" id="testLabel" left="0" right="0" text="{label}" creationComplete="labelComplete(event)"/> |
| |
| <mx:Label preinitialize="preInitialize(event)" initialize="onInitialize(event)" id="otherLabel" left="0" right="0" top="40" text="{label}" creationComplete="labelComplete(event)"/> |
| |
| <fx:Script><![CDATA[ |
| import mx.events.FlexEvent; |
| |
| |
| private function labelComplete(event:FlexEvent):void{ |
| trace(event.target.id,' creationComplete Internal:'+this.label) |
| } |
| |
| |
| private function preInitialize(event:FlexEvent):void { |
| trace(event.target.id,' preInitialize Internal:'+this.label) |
| } |
| |
| private function onInitialize(event:FlexEvent):void { |
| trace(event.target.id,' initialize Internal:'+this.label) |
| } |
| ]]></fx:Script> |
| </mx:Canvas> |