共有の使用に関して、アドビのドキュメントに誤りがあるようobject.send()
です。send メソッドをすべてのクライアントに実行しようとしています。
Adobe からクライアント側とサーバー側のコードをコピーしましたが、関数を呼び出すことができません。これは、出力のコンパイル エラーです。
Line 31 1119: Access of possibly undefined property doSomething through a reference with static type flash.net:SharedObject.
これをas3初心者に修正する方法を提案してください。誰でも私を助けることができますか?
var nc:NetConnection = new NetConnection();
nc.connect("rtmfp://localhost/submitSend");
nc.addEventListener(NetStatusEvent.NET_STATUS, netHandler);
function netHandler(event:NetStatusEvent):void{
switch(event.info.code){
case "NetConnection.Connect.Sucess":
trace("Connecting...");
break;
case "NetConnection.Connect.Failed":
trace("Unable to connect up");
break;
case "NetConnection.Connect.Rejected":
trace("Whoops");
break;
}
}
var so:SharedObject = SharedObject.getRemote("mySo", nc.uri, true);
so.connect(nc);
so.doSomething = function(str) {
// Process the str object.
};
サーバ側:
var so = SharedObject.get("mySo", true);
so.send("doSomething", "This is a test");