la duda es.
¿Como puedo borrar el punto dibujado al hacer click en el?
function dibuja (){
i++;
attachMovie("punto","punto"+i,i);
x=_root._xmouse;
y=_root._ymouse;
_root["punto"+i]._x = x;
_root["punto"+i]._y = y;
}
_root.onMouseDown = function(){
dibuja();
}
