真才实料才是最真

Dream have no limit

统计

积分与排名

good link

最新评论

FLEX的页面传值

FLEX的页面传值

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
    <mx:Script>
  private function onclik():void
{
 
    navigateToURL(new URLRequest("requst_test.swf?a="+Textl.text), "quote");
               
}

</mx:Script>

   
    <mx:Button x="186" y="202" label="Button" click="onclik();"/>
    <mx:TextInput x="141" y="143" id="Textl"/>
   
</mx:Application>



<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"
   
   
creationComplete="init();"    >
<mx:Script>
  import mx.controls.Alert;
private function init():void
{
      //Alert.show(this.parameters.a);
      TextInput1.text=this.parameters.a;
                     
}


</mx:Script>
<mx:TextInput x="151" y="77" id="TextInput1"/>

</mx:Application>

posted on 2007-09-03 15:36 gavinkin555 阅读(2289) 评论(1)  编辑 收藏 引用 所属分类: FLEX

评论

# re: FLEX的页面传值 2009-10-27 21:22 适当的方式的

接受不到啊!  回复  更多评论   

只有注册用户登录后才能发表评论。