See if you guys can answer me this!

I want to have a button rigged so that on release it will play one movie clip and then another right after the first one is done. Here is the script I have so far:

on(release){
 if(scape=="yes"){
 _root.holder.scenicpics_mc.gotoAndPlay("landscape");
_root.holder.scenicpics_mc.gotoAndPlay("portrait");
 }
}  

I want the label **“portrait” **to lay right after the label “landscape” is done. The way I have it set up now, it just plays “landscape”.

I want to tell Flash - Play “landscape” and then when it is done, go right over and play “portrait”

Anyone know what’s wrong with my code or what the correct code for something like that would be?

Thank you -
~m4r~