Hi all, I wanted to reference a variable from one frame in the current frame with Animate CC with JS.
For example, below are the codes of a frame:
var p1=new Object();
p1.classes = middle;
Then I wanted to use p1 in another frame and I tried the following codes:
alert("this p1 classes is: ", p1.classes);
But an error of "Uncaught ReferenceError: p_p is not defined" is shown in the console
So, may I know how to pass one variable to another frame in Animate CC with js please? Thanks for any help.
The problem in declaring your variables and/or objects inside a frame, is that the scope is restricted to that frame, preventing your variables and/or objects to be used in other frames:
Frames code
To avoid that behaviour, you need to change the scope. There are two ways, depending on what scope you want to use:
Option 1: Clip-level scope
The scope is restricted to the current Movieclip, meaning that your variable or object can be used in any frame of that MovieClip.
Frames code
Option 2: Global scope
By not declaring your variable or object, the scope has no restrictions. It can be used in any frame of any MovieClip.
Frames code
Side note: Object creation
If you are creating a object, for performance and simplicity, it's better to use an object literal instead of
new Object()
.