这可能是一个noob问题,但由于我是Flash和AS3的新手,所以它就是......
我可以以某种方式重用AS3 NetConnection吗?
我正在尝试创建一个处理连接的AMFPHP类,因此每当我想调用AMFPHP方法时,我都可以重新使用该初始连接。
到目前为止,这是我的代码,
package com.utils
{
public class amfphp
{
private var gateway:String = "http://localhost/amfphp/gateway.php";
private var connection:NetConnection = new NetConnection;
private function con(gate:String, con:NetConnection):void {
//connect to the gateway file
con.connect(gate);
return con;
}
}
}
提前Thanx!
答案 0 :(得分:2)
没错,你的解决方案是可行的。我说的一件小事,因为你说你是as3的新手。您的函数无法使用连接对象返回,因为返回值设置为void。
一切顺利。
的Tamas