私は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);