Scene issue

Hello peeps, im a noob at actoinscripting
Anyway, I want the movieclip in Frame 1 Scene 1 to finish before skipping to Frame 2 Scene 1
im using
gotoAndStop(“Scene 1”, 2);
at the end of the MC

thanks in advanced

Use
[AS]_root.gotoAndStop(2);[/AS]

If you want to go to another scene better use framelabels
[AS]_root.gotoAndStop(“framelabel”);[/AS]

However I shouldn’t use scenes, take a look here
http://www.kirupa.com/developer/mx/full_site.htm

scotty:?)