I set a value on frame 20 of my animation
var final_answer = hundreds.text+tens.text+units.text;
var mySharedObject:SharedObject = SharedObject.getLocal("/");
I want to access this on frame 40 but I get the following error
Scene 1, Layer 'Actions', Frame 210, Line 5 1120: Access of undefined property 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?