For a project I have several movie clips into one frame in those movieClips you will find a button to go to the next movieClip.
All pages (movieClips) overlap each other.
The movie clips in this case are all different pages that I want to connect through a button.
When I click on the button in the movie clip I can not use gotoAndPlay
because I want everything in the same frame. I think I should use removeChild
for the other movie clips to remove them and only show the one i need when I press the button?
So is there an alternative for gotoAndPlay();
or should i just use removeChild();
if you click the button?
I have little experience with AS3 so I do not know exactly how I should do it.