Yooh dude...
I think this thing you wanna do won't use any
flash comm server feature.
If you want to use php to send messages through
a flash, you can do it by loadVariables command.
I don't have any tutorial to point you in that way,
but this command would solve your problem by
openning your php as your client connects to the server.
I think this might work:
ActionScript Code:
nc = new NetConnection();
nc.connect("rtmp:/myApp");
nc.onStatus = function(info){
if(info.code == "NetConnection.Connect.Success")
loadVariablesNum("myScript.php",0);
}
use this code inside your flash and it will open a
php whenever it connects to the server.
well... I never used php, but loadvariables
works fine with asp codes.
I hope that helps.
Zerooito