Copy link to clipboard
Copied
How do i target a variable on frame 1(let score = 0) from buttons on other frames Thanks
Copy link to clipboard
Copied
/* Code to get the frame number of the current frame
*/
var frameNumber = this.currentFrame;
Copy link to clipboard
Copied
reference the timeline.
eg, to assign a variable:
this.var1="hi";
to retrieve that variable after it's been assigned:
console.log(this.var1); // if code on the same timeline