在外面写个xml,然后再flash里面链接xml,这个是用于图片,文字
btn.addEventListener(MouseEvent.CLICK,btn1);
function btn1(e:MouseEvent)
{
var y1:Loader=new Loader();
y1.load(new URLRequest("**.xml"));
**_mc.addChild(y1);
}
视频的话也一样
btn.addEventListener(MouseEvent.CLICK,btn1);
function btn1(e:MouseEvent)
{
var y1:Loader=new Loader();
y1.load(new URLRequest("**.swf"));
**_mc.addChild(y1);
}