This content has been marked as final.
Show 3 replies
-
1. Re: Overriding base class methods
Raymond Basque Feb 27, 2008 7:48 AM (in response to sneakyimp)You're missing an import statement.
import flash.net.*;
OR
import flash.net.XMLSocket;
Other than that, I see nothing wrong with your code. -
2. Re: Overriding base class methods
Newsgroup_User Feb 28, 2008 9:05 AM (in response to sneakyimp)Oo -- missed a bug one.
The method signature for the close method is
public function close():void;
NOT
public function close(host:String, port:int):void;
So your override should be:
public override function close():void
{
boolWaitingToConnect = false;
super.close();
}
-
3. Re: Overriding base class methods
sneakyimp Feb 28, 2008 2:00 PM (in response to Newsgroup_User)Thanks guys...now we have this:



