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