我有 6 个 swf 文件。在每个 swf 动画结束后会出现一个按钮,单击它会打开下一个 swf 文件。但是,其中 3 个 swf 文件具有不同的帧速率。其中 3 个以 24fps 工作,3 个以 48fps 工作。当我播放 swf 文件时,所有动画都以相同的帧速率 (24fps) 工作。有没有办法以自己的帧速率组合和打开两个文件?在这里,我附上我在按下按钮时用来打开文件的代码
非常感谢你 !
stop();
//This creates a new instance of the loader object and adds it to the stage.
var my_Loader:Loader = new Loader();
addChild(my_Loader);
//This creates a new instance of the URLRequest object that contains the path
//to the external swf. The load method then loads the SWF file into the loader
//object.
var my_url:URLRequest=new URLRequest("Sinus for adults.swf");
my_Loader.load(my_url);