Share Posted January 18, 2018 I'm trying to go to another labeled frame in Animate CC using delayedCall ex. - TweenMax.delayedCall(3, this.gotoAndPlay, ["seq2"]); It fails, is there something I'm missing, I've swapping out the methods and parameters and am having success, for example - t.delayedCall(3, console.log, ["hello"]); Link to comment Share on other sites More sharing options...
Share Posted January 18, 2018 It's probably just a scope issue. Since you're trying to call gotoAndPlay() on the "this" object, it should actually look like: TweenMax.delayedCall(3, this.gotoAndPlay, ["seq2"], this); Does that help? 3 Link to comment Share on other sites More sharing options...
Author Share Posted January 18, 2018 Yep! Thanks Jack! 1 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now