0

アニメーションのフレーム20に値を設定しました

var final_answer = hundreds.text+tens.text+units.text;
var mySharedObject:SharedObject = SharedObject.getLocal("/");

フレーム40でこれにアクセスしたいのですが、次のエラーが発生します

シーン1、レイヤー'アクション'、フレーム210、行5 1120:未定義のプロパティmySharedObjectへのアクセス。

I have also tried to use a normal variable - is there anyway to store a variable in what is effectively a cookie between frames?
4

1 に答える 1

0

ドキュメントクラスを使用することをお勧めしますが、最初のフレームですべてを処理したくない場合は、使用できますaddFrameScript

addFrameScript(4,onFrame5);

function onFrame5():void{
    trace('current frame is 5');
}
于 2012-10-15T11:10:25.343 に答える