我想在flash中加入一个按钮,点击时触发JS事件 改怎么做??急急急。

2024-11-19 01:30:03
推荐回答(1个)
回答1:

package {
import flash.display.Sprite;
import flash.text.*;
import flash.external.ExternalInterface;
import flash.events.MouseEvent;
public class main extends Sprite {
private var mytxt:TextField=new TextField();
private var my_btn:Sprite=new myb();
public function main() {
mytxt.type = TextFieldType.INPUT;
mytxt.text="11111";
mytxt.border=true;
my_btn.x=300;
my_btn.y=100;
my_btn.buttonMode=true;
addChild(mytxt);
addChild(my_btn);
my_btn.addEventListener(MouseEvent.CLICK,astojs);
}
private function astojs(e:MouseEvent):void {
ExternalInterface.call("sendToJavaScript",mytxt.text);
}
}
}