2

私は ActionScript 3 を初めて使用します。nc.call()メソッドを使用してクライアントからサーバーを呼び出して、クライアントがチャット アプリケーションでやり取りするために使用する適切なオプションであるかどうかを確認しようとしています。

コンパイル エラー メッセージが表示されました。

1118: Implicit coercion of a value with static type Object to a possibly unrelated type flash.net:Responder.

誰かがこのエラーを修正するのを手伝ってくれませんか?

これは、以下の私のクライアント側コードです。

 import flash.net.NetConnection;
 import flash.events.NetStatusEvent;

 var nc:NetConnection = new NetConnection();

 nc.connect("rtmfp:/fms/textchatexample");

 nc.addEventListener(NetStatusEvent.NET_STATUS, netHandler);

 function netHandler(event:NetStatusEvent):void {
     switch(event.info.code) {
         case "NetConnection.Connect.Success":
             trace("Your Connected UP");
             break;
     }
 }

 var test:Object = new Object();
 test.onResult = function(arg) {
     trace(arg);
 };
 nc.call("sendMsg", test, "just, a test call"); ERROR LINE
4

1 に答える 1

0

Objectインスタンスを次のものに置き換えてみてくださいResponder

var test:Responder = new Responder(
    function(result):void
    {
        trace('ok :', result);
    },
    function(status):void
    {
        trace('status :', status);
    });

あなたの代わりにObject

于 2013-02-21T15:32:08.217 に答える