try gotoAndStop(2); ? what version of AS are you using?
Chris Georgenes / mudbubble.com / keyframer.com / Adobe
Community Expert
w3developing wrote:
> Can anyone help? I'm losing my mind
>
> I must be going crazy, but I created a simple php/flash
submission form, and
> for some reason my 2nd frame (which has the message
"Thank you for your
> submission.") keeps blinking as if it's just an endless
loop between frames one
> and two. Below is my code and this is what I am doing:
>
> 1) Insert keyframe (in keyframe 2 position layer 1)
>
> 2) Insert the below code (which is working flawless
otherwise)
>
> on (release) {
> if (name eq "" or email eq "" or phone eq "" or details
eq "") {
>
> } else {
> loadVariablesNum("
http://mysite.com/quickquote.php",
0, "POST");
> name = "";
> email = "";
> phone = "";
> details = "";
> gotoAndPlay(2);
> }
> }
>