Can't get to the Next Frame() or gotoAndPlay

[FONT=Calibri][SIZE=3]I have a flash file that the action scripts doesn’t appear to work. It is regarding a form turned into a movie clip. I copied the action script and format from a tutorial from this web site (Kirupa Flash_php_email.fla). It’s a fairly easy tutorial, but I can’t get it to work. Essentially, after the user fills out the name, email, and message fields, he clicks on the send button. I’m trying to copy the same concept into my fla file. The send button loads the variables and sends an email out to the user. I’ve been able to get that portion to work with the email.php file. It will return an email to the user, but the movie just seems to pause and not advance to the next frame. The data the user inputs remains on the screen. I’m not sure if a stop command is preventing it from moving to the next frame or not. What I can’t get the done is to go to the next frame where the user is told “Thank You” and clicks on the Continue button.[/SIZE][/FONT]
[FONT=Calibri][SIZE=3] [/SIZE][/FONT]
[FONT=Calibri][SIZE=3]I have an action script layer and on frame 118 it has the stop(); command[/SIZE][/FONT]
[FONT=Calibri][SIZE=3]I have a layer called “txt”. On frame 118, all the input text fields named, *name, email, and message *have been grouped together then converted to a movie clip called form. On that same layer, on frame 119 I have labled those group of frames “ThankYou”, which also displays the Thank You and a Continue button.[/SIZE][/FONT]
[FONT=Calibri][SIZE=3] [/SIZE][/FONT]
[FONT=Calibri][SIZE=3]Here is the actionscript on frame 118 for the movie clip “form”[/SIZE][/FONT]
[FONT=Calibri][SIZE=3] [/SIZE][/FONT]
[SIZE=3][FONT=Calibri][original script from tutorial][/FONT][/SIZE]
[FONT=Calibri][SIZE=3]onClipEvent(data){[/SIZE][/FONT]
[SIZE=3][FONT=Calibri] //show the welcome screen[/FONT][/SIZE]
[SIZE=3][FONT=Calibri] _root.nextFrame();[/FONT][/SIZE]
[FONT=Calibri][SIZE=3]}[/SIZE][/FONT]
[FONT=Calibri][SIZE=3] [/SIZE][/FONT]
[SIZE=3][FONT=Calibri][script I modified for my movie clip and timeline][/FONT][/SIZE]
[FONT=Calibri][SIZE=3]onClipEvent(data){[/SIZE][/FONT]
[SIZE=3][FONT=Calibri] // show the welcome screen[/FONT][/SIZE]
[SIZE=3][FONT=Calibri] goToAndPlay(“ThankYou”); [Note: I made this Frame 119][/FONT][/SIZE]
[FONT=Calibri][SIZE=3]}[/SIZE][/FONT]
[FONT=Calibri][SIZE=3] [/SIZE][/FONT]
[SIZE=3][FONT=Calibri]Here is the action script for the true_btn [/FONT][/SIZE]
[FONT=Calibri][SIZE=3] [/SIZE][/FONT]
[FONT=Calibri][SIZE=3]on (release) {[/SIZE][/FONT]
[SIZE=3][FONT=Calibri] //send variable in form movieclip (the textfields)[/FONT][/SIZE]
[SIZE=3][FONT=Calibri] //to email PHP which will send the mail[/FONT][/SIZE]
[SIZE=3][FONT=Calibri] form.loadVariables(“email.php”, “POST”);[/FONT][/SIZE]
[FONT=Calibri][SIZE=3]}[/SIZE][/FONT]
[FONT=Calibri][SIZE=3] [/SIZE][/FONT]
[FONT=Calibri][SIZE=3]If you want to see what I’m referring to, then visit [/SIZE][/FONT][FONT=Calibri][SIZE=3][COLOR=#800080]http://education4tomorrow.com/index1.html[/COLOR][/SIZE][/FONT]
[SIZE=3][FONT=Calibri]and click on the Contact Us link at the bottom of the page. I must be missing something but can’t figure it out. I’m losing sleep trying to debug what I don’t understand. [/FONT][/SIZE]
[FONT=Calibri][SIZE=3] [/SIZE][/FONT]
[FONT=Calibri][SIZE=3]Thank you for you help,[/SIZE][/FONT]
[FONT=Calibri][SIZE=3]Valentino[/SIZE][/FONT]
[FONT=Calibri][SIZE=3][COLOR=#0000ff]vplumme@yahoo.com[/COLOR][/SIZE][/FONT]