Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Move back tween

Engaged ,
Apr 04, 2021 Apr 04, 2021

Reset movement to the back in frames
For example, the figure advances to the back
Or go back in the same path of progress ???

 

11.jpg

For example, I have two buttons
When the first is pressed, the shape advances forward, but if pressed on the other, it returns back
How to do it ??

this.stop();
var root = this;

this.cover4.addEventListener("mousedown", cover4_4.bind(this));
function cover4_4(evt) {
this.gotoAndPlay(11);
this.flipbook.gotoAndPlay(1);
}

this.cover3.addEventListener("mousedown", cover3_3.bind(this));
function cover3_3(evt) {
this.gotoAndStop(0);
this.flipbook.gotoAndPlay(1);
}

 

 

please help

TOPICS
Code , Import and export , Timeline
292
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Engaged ,
Apr 05, 2021 Apr 05, 2021

Any Help ?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Engaged ,
Apr 05, 2021 Apr 05, 2021

(^_^)??

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 06, 2021 Apr 06, 2021

Can't have both of these (this.gotoAndPlay(11); or
this.flipbook.gotoAndPlay(1);) in one.  one or the other.

 

Have you tried code snippets?

 

Screen Shot 2021-04-06 at 9.32.18 PM.png

 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 06, 2021 Apr 06, 2021

Try this tutorial https://www.youtube.com/watch?v=AkGjj-7JuwY

see if it helps you. 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Engaged ,
Apr 07, 2021 Apr 07, 2021
LATEST

@Nick Gioia 

I do not mean this
I mean, if Movie Clip, move to Frame 10
I want it , go back in the same movement from 10 to 1

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines