使用复合字符串获取对Flex 3对象的引用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用复合字符串获取对Flex 3对象的引用相关的知识,希望对你有一定的参考价值。

Using a string built at runtime to reference objects in Flex. From the help docs.
  1. <?xml version="1.0"?>
  2. <!-- usingas/FlexComponents.mxml -->
  3. <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
  4. <mx:Script><![CDATA[
  5. public function changeLabel(s:String):void {
  6. s = "myButton" + s;
  7. this[s].setStyle("fontStyle","italic");
  8. this[s].setStyle("fontSize","18");
  9. }
  10. ]]></mx:Script>
  11.  
  12. <mx:Button id="myButton1" click="changeLabel('2')" label="Change Other
  13. Button's Styles"/>
  14. <mx:Button id="myButton2" click="changeLabel('1')" label="Change Other
  15. Button's Styles"/>
  16. </mx:Application>

以上是关于使用复合字符串获取对Flex 3对象的引用的主要内容,如果未能解决你的问题,请参考以下文章

从字符串中获取 Flex 中的部分 URL

Flex 4.6 在 <s:Application> 皮肤中获取对组件的引用

Fragment 的 GetTag 返回空对象引用

2.3 复合类型

c++学习笔记--复合类型,const。

如何从布局中获取膨胀的片段参考?