How to correctly select mc on stage for animation
As a refresher test (it's years since I last used Animate), I am trying to animate an Mc with GSAP (following the video at https://youtu.be/Dq1_MI2gHuM).
If I follow the video instructions and go:
TweenMax.to(this.sym1, 1, {
x: 10,
delay: 0.5
});
var root = this;
TweenMax.to(root.sym1, 1, {
x: 10,
delay: 0.5
});
