嗨,我想在我的动作脚本项目中播放两个 swf 文件。在这两个文件中,一个 swf 文件在系统前面的检测面上工作。其他 swf 播放 flv 文件。当检测到人脸时,如果没有,玩家必须弯下腰be 播放flv 文件。
我知道如何加载 swf 文件,但我无法处理有关启动和停止播放器的功能。
代码片段显示了如何加载外部 swf 文件。我将在注释中解释每一行代码
public function videos(view:Sprite)
{
this.box = view;//IT GETS Sprite object from other class because of need to display the player also.
request = new URLRequest("Untitled-1.swf");
currentSWF=new MovieClip();
loader= new Loader();
loader.load(request);
box.addChild(loader);
currentSWF = MovieClip(loader.content);
loader.addEventListener(Event.COMPLETE,loadComplete);
//addChild(loader);
currentSWF.gotoAndPlay(1);//when i put this line of code in comments it plays the external swf also.
}
我希望你能理解我的疑问。任何人都可以解释如何处理我的事情。我是这个动作脚本的新手。请帮助我