![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
23/04/2003, 08:57
|
![Avatar de etmoreno](http://static.forosdelweb.com/customavatars/avatar28617_1.gif) | | | Fecha de Ingreso: diciembre-2002 Ubicación: near fireplace
Mensajes: 404
Antigüedad: 22 años, 2 meses Puntos: 1 | |
También puedes hacer algo mucho más sencillo como poner en el movieClip que quieres controlar algo como:
onClipEvent(enterFrame) {
if ((_xmouse > x1) and (_xmouse< x2) and (_ymouse > y1) and (_ymouse < y2)) {play()} else {stop()}
}
las variables son relativas a la posición del movieClip:
x1 = _x izquierda
x2 = _x derecha
y1 = _y superior
y2 = _y inferior
Espero te sea útil.
Un gran saludo .- |