flash on 2009-8-30
表示用の変数 マウスの座標を取得
ActionScript3 source code
/**
* Copyright kenta ( http://wonderfl.net/user/kenta )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/r7Vw
*/
// 表示用の変数
_root.x = 0;
_root.y = 0;
onMouseMove = function(){
// マウスの座標を取得
_root.x = _root._xmouse;
_root.y = _root._ymouse;
}