بسيطة اخوي F11 أو CTRL + L ادخل على MovieClip باسم send_clip بتلقى في وسطه زر اضغط على الزر وافتح الاكشن 
بتلقى الكود عدله 
	كود PHP:
	
on (release) {
    //    Now import the variables we
    //    need to send in this movie clip
    sender_mail = _root.Semail.text
    sender_name = _root.Sname.text
    sender_subject = _root.Ssubject.text
    sender_message = _root.Smessage.text
    //    all the vars we just imported
    //    will be sent via POST method now
    loadVariables("sendmail.php",this,"POST");
    //    and when receives the answer from
    //    the server...
    this.onData = function()
    {
        for(var a in this) trace([a,this[a]])
        //    ok, next frame
        _root.nextFrame();
        if(this.output=='sent')
        {
            // in case of success
            _root.errTitle = 'Thank You.';
            _root.errType = "Your message has been succesfully sent.";
        } else {
            //    else
            _root.errTitle = "Error!";
            _root.errType = "Attention, an error occurred while processing your message. Please try again later.";
        }
    }
}