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 回答