我在动画的第 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?