05/12/2003, 06:04
|
| | Fecha de Ingreso: diciembre-2003
Mensajes: 12
Antigüedad: 20 años, 11 meses Puntos: 0 | |
Buenas,
Lo he probado como tu dices y cuando el movieclip "prueba" que esta dentro de movie1 toca a la barrera sale el mensaje. El mensaje no sale cuando cuando toca movie1, sino cuando toca prueba, supongo que te referiras a eso, no?
_root.movie1.onPress = function(){
this.startDrag();
vari=1
if (_root["movie"+vari].prueba.hitTest(_root.barrera) ){
trace("SI");
}
}
_root.movie1.onRelease = function()
{
this.stopDrag();
}
salu2 |