Flash AS3: help with code to play one movie clip to the next
Hello,
I'm new to flash and actionscript. What I'm currently working on is an eCard and I need help on getting my 5 movieclips to play in sequence. What I did was I created what I called 5 panels with different scenes and animations in it. In each panels, I created an actions layer with a stop(); at the beginning and a blank keyframe at the end with a stop(); In my first panel, I have a heart beating, when the user clicks on the heart button, it should play the next panel and so on until it ends.
Here's what I have so far, in the seperate main class, I have:
public class EcardMain extends MovieClip
{
public function EcardMain()
{
mc_panel2.visible=false;
mc_panel2.visible=false;
mc_panel3.visible=false;
mc_panel4.visible=false;
mc_panel5.visible=false;
Bookmarks