Ver Mensaje Individual
  #1 (permalink)  
Antiguo 31/05/2009, 11:16
Avatar de yefranjo77
yefranjo77
 
Fecha de Ingreso: febrero-2008
Ubicación: Aragua - Venezuela
Mensajes: 312
Antigüedad: 16 años, 4 meses
Puntos: 1
Pregunta como enviar mensaje al finalizar el puzzle

hola a todos

estoy realizando un puzzle (rompecabezas) de una manera bastante sencilla
tengo una capa 1 donde esta la imagen cortada en 4 pzas y capa 2 esta la programacion, el cual es esta:

puzzle.onPress = function() {
startDrag(this);
};
puzzle.onRelease = function() {
stopDrag();
};
puzzle1.onPress = function() {
startDrag(this);
};
puzzle1.onRelease = function() {
stopDrag();
};
puzzle.onPress = function() {
startDrag(this);
};
puzzle.onRelease = function() {
stopDrag();
};
puzzle2.onPress = function() {
startDrag(this);
};
puzzle2.onRelease = function() {
stopDrag();
};
puzzle.onPress = function() {
startDrag(this);
};
puzzle.onRelease = function() {
stopDrag();
};
puzzle3.onPress = function() {
startDrag(this);
};
puzzle3.onRelease = function() {
stopDrag();
};
puzzle.onPress = function() {
startDrag(this);
};
puzzle.onRelease = function() {
stopDrag();
};
puzzle4.onPress = function() {
startDrag(this);
};
puzzle4.onRelease = function() {
stopDrag();
};

cada trozo de pieza es un simbolo clip de pelicula cuyos nobres de instancia son puzzle1, puzzle2, puzzle3 y puzzle4

pero quiero que al finalizar el rompecabezas me envie un mensaje de felicitaciones o algo asi

de antemano gracias por sus aportes