Hello,
I was trying to convert some flash projects that use remoting from flash mx 2004 to flash 8. I first recieved this error w/ the old header includes:
#include “NetServices.as”
#include “NetDebug.as”
Which I fixed by changing them to this:
import mx.remoting.NetServices;
import mx.remoting.debug.NetDebug;
Now I have no remoting response at all but no errors.
Here’s how I’m setting up the old Netservices connection:
main_responder = {};
NetServices.setDefaultGatewayUrl(“gateway.php”);
var conn = NetServices.createGatewayConnection();
service = conn.getService(“db_interface”, main_responder );
Is there any problem at this point or do I need to install a new version of Flash Remoting?
Thanks,
Clem C