Hello everyone.
**Aim: **
- I have a code in frame#1;
- I have an object in frame #2 (but this object doesn’t exist in frame #1);
Comment: In AS2 I could use something like:
gotoAndStop(2);
// code for object
gotoAndStop(1);
It doesn’t work any more in AS3.
Question:
? How I can access object in frame #2 from frame#1?
? Any other way except using custom classes?