Hello
I am trying to do a communication between Flash and Ruby
So I installed the rubyamf plugin and did everything I need on the ruby side
But now when I try to set my code on the flash side I have an error
MY code :
import flash.net.*;
var nc:NetConnection = new NetConnection();
nc.connect("http://localhost:3000/rubyamf_gateway");
var responder:Responder=new Responder(onResult,onFault);
nc.call("UsersController.save", responder);
function onResult(responds:Object):void {
trace('onResult');
}
function onFault(responds:Object):void {
trace('onFault');
}
I have this error
Error #2044: Unhandled NetStatusEvent:. level=error, code=Client.Data.UnderFlow
at rubyamf_fla::MainTimeline/frame1()
Anyone has an idea?
Thank you !
North America
Europe, Middle East and Africa
Asia Pacific