13/03/2009, 12:54
|
| | | Fecha de Ingreso: mayo-2007 Ubicación: { Dash Berlin }
Mensajes: 1.879
Antigüedad: 17 años, 7 meses Puntos: 67 | |
Respuesta: Error en simple paint en flash En onMouseMove escribe un hitTest en el if asi:
Código:
cuadrodbj.onMouseMove = function() {
if (_root.hitTest(_root._xmouse, _root._ymouse, _root.cuadrodbj) && this.isDrawing == true) {
cuadrodbj.lineTo(cuadrodbj._xmouse,cuadrodbj._ymouse);
}
updateAfterEvent();
};
|