Actionscript 3 用按钮打开不同帧率的swf文件

Actionscript 3 用按钮打开不同帧率的swf文件,actionscript-3,flash,frame-rate,Actionscript 3,Flash,Frame Rate,我有6个swf文件。在每个swf动画结束后,会出现一个按钮,单击该按钮会打开下一个swf文件。但是,其中3个swf文件的帧速率不同。其中3个以24fps的速度工作,3个以48fps的速度工作。当我播放swf文件时,所有动画都以相同的帧速率(24fps)工作。有没有一种方法可以合并并以各自的帧速率打开这两个文件? 在这里,我附上我按下按钮时用来打开文件的代码 多谢各位 stop(); //This creates a new instance of the loader object and ad

我有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);
不可能


不过,你可以使用计时器提前帧,但如果你有多个带有时间线的电影剪辑级别,你就必须单独提前帧。您还将错过任何代码执行,尤其是停止和播放,因为您将覆盖它们。

谷歌给出了以下简单的回答:

虽然我还没有试过,但据我所知,它应该能起作用