<?xml version="1.0" encoding="utf-8"?> <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"> <fx:Declarations> <!-- 将非可视元素(例如服务、值对象)放在此处 --> </fx:Declarations> <s:layout> <s:VerticalLayout horizontalAlign="center"/> </s:layout> <s:Label text="The Current URL is:" fontSize="18"/> <!-- spark.components.Application.url():String [只读] 从中加载此应用程序的 SWF 文件的 URL。 --> <s:Label text="{this.url}" fontSize="14"/> <s:Label text="'该URL的长度是:' + {this.url.length}" fontSize="18"/> <!--spark.components.Application.parameters():Object [只读] 包含表示提供给此 Application 的参数的名称-值对的 Object。 可以使用 for-in 循环来提取 parameters Object 中的所有名称和值。 参数有两个源:Application 的 URL 中的查询字符串和 FlashVars HTML 参数(仅适用于主 Application)的值。 --> <mx:Label text="{this.parameters.state}"/> </s:Application>
?