在 Flex 上附加一个 textarea 文本字段
Posted
技术标签:
【中文标题】在 Flex 上附加一个 textarea 文本字段【英文标题】:Appending a textarea text field on Flex 【发布时间】:2011-10-26 09:33:16 【问题描述】:由于私有 var ta:TextArea 是一个 mx 组件,因此 actionscript3 文件中是否存在 spark TextArea decleration?
【问题讨论】:
“因为私有变量 ta:TextArea 是一个 mx 组件”?这是什么意思? 【参考方案1】:是的,有:
<?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">
<s:TextArea id="textArea">This is a spark TextArea component</s:TextArea>
</s:Application>
或:
<?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"
creationComplete="init(event)">
<fx:Script>
<![CDATA[
import mx.events.FlexEvent;
import spark.components.TextArea;
private var _textArea:TextArea;
private function init(e:FlexEvent):void
_textArea = new TextArea();
_textArea.text = "This is a spark TextArea component";
addElement(_textArea);
// end function
]]>
</fx:Script>
</s:Application>
【讨论】:
以上是关于在 Flex 上附加一个 textarea 文本字段的主要内容,如果未能解决你的问题,请参考以下文章