Escrito por: prototipo a 30 Ago 2007
Bem pessoal, aqui deixo mais um tutorial de flash + php

Algum erro digam:

bSubmit.onRelease = function()
{
email();
}
function email()
{
var sMessage = "Name: " + tName.text + "nE-mail: " + tEmail.text + "nComments: " + tComments.text;
lvSend = new LoadVars();
lvReply = new LoadVars();
lvSend.msg = sMessage;
lvSend.address = "email@email.com"; //Change this to your e-mail.
tName.text = "Sending Message...";
tEmail.text = "";
tComments.text = "";
lvReply.onLoad()
{
tName.text = "Message Sent";
}
lvSend.sendAndLoad('mail.php', lvReply, 'POST');
}
Caso prefiram fazer o download do mail.php pode faze-lo no link abaixo:
Download mail.phpCumps
prototipo