I have a flash movie that has a form, when the user hits the send button, certain information is passed to a php file. The problem occurs when the last bit of information is needed to be passed back to the flash movie, it will not go.
I discovered through debugging that the reason this is occuring is that the php file cannot find the flash movie since it is on layer 1 loaded into the main movie.
My question is how do I target the php file to send the required info back to the flash movie on layer 1.
the php bit reads like this.. it is fairly simple and adapted from a widely available tutorial...the php file and both flash movies all live in the same directory on the server.
//Confirmation is sent back to the Flash form that the process is complete
$sendresult = "Done!";
$send_answer = "answer=";
$send_answer .= rawurlencode($sendresult);
I discovered through debugging that the reason this is occuring is that the php file cannot find the flash movie since it is on layer 1 loaded into the main movie.
My question is how do I target the php file to send the required info back to the flash movie on layer 1.
the php bit reads like this.. it is fairly simple and adapted from a widely available tutorial...the php file and both flash movies all live in the same directory on the server.
//Confirmation is sent back to the Flash form that the process is complete
$sendresult = "Done!";
$send_answer = "answer=";
$send_answer .= rawurlencode($sendresult);