Translator

AS3

Flash MMO Server

These was some of my research on how to create Flash MMO Server:

MMO Server

http://www.smartfoxserver.com/products/basic.php

MMO Server with Flash Component/Editor

http://www.openspace-engine.com

MMO Flash API

http://www.nonoba.com/developers/multiplayerapi/overview

http://playerio.com/pricing/

Chat room kind of flash

http://palabre.gavroche.net/content/view/19/38/

Custom Cursor for AS3

http://www.actionscript.org/forums/showthread.php3?t=154644

As conclusion

var cursor:MovieClip;

function initializeMovie ():void
{
    cursor = new Cursor();
    addChild (cursor);
    cursor.enabled = false;
    Mouse.hide ();
    stage.addEventListener (MouseEvent.MOUSE_MOVE, dragCursor);
}

function dragCursor (event:MouseEvent):void
{
    cursor.x = this.mouseX;
    cursor.y = this.mouseY;
}

initializeMovie ();