[flex] flash调用flex方法问题

hpf112867284 2010-10-13
flash里:
    有个button按钮,id="myButton".
    function  nn(event:MouseEvent):void{
//这里应该怎么写
    }
    myButton.addEventListener(MouseEvent.CLICK,nn);

    function  sendsth():String{
return "123";
    }
flex里:
    <mx:SWFLoader id="swfLoader" source="../image/178.swf"/>
     var ss:String="";
     public function getSth():void{
ss=(swfLoader.content as MovieClip).sendsth();
Alert.show(ss);
     }
要实现的效果:点击flash里button按钮,想要调用flex里getSth()方法,那么在
flash里的nn方法体应该怎么写。目的是想把flash里的数据传到flex中。
Global site tag (gtag.js) - Google Analytics