function SocketExample()
{
socket = new Socket();
// Add an event listener to be notified when the connection
// is made
socket.addEventListener( Event.CONNECT, onConnect );
// Connect to the server
socket.connect( "127.0.0.1", 2901 );
}
function onConnect( event:Event ):void
{
tt.text = "Successful linking";
}
Flash as3.0 で Socket に接続してみます。「SecurityError: Error #2000」というエラーが表示されます。このエラーを回避するにはどうすればよいですか?