作者HelloJimmy (揪~~竟,能不能考上?)
看板Flash
标题[问题] flash呼叫FMS问题?
时间Wed Jan 2 01:17:29 2013
大家好,
我的flash元件可与FMS成功建立连线,
呼叫远端function时client也显示成功.
但是server side function却一点反应也没有.
client端code:
//连线成功才呼叫远端函式
private function onNetStatusHandler(event:NetStatusEvent):void{
switch (event.info.code) {
case "NetConnection.Connect.Success":
this.nc_LBSConnection.call("HelloWorld",new Responder(InvokeServerSuccess,
InvokeServerFailure));
break;
}
}
server端code:
public String HelloWorld() {
this.write_log("HelloWorld!");
return "Helloworld";
}
问题卡很久了,
请高手赐教,
谢谢~~
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 118.166.229.211
1F:推 vml93:server端写错,你可以google一下范例 01/03 00:04