Código :
agre();
function agre() {
attachMovie("avi","av",getNextHighestDepth());
av.tip.attachMovie("caja","ca",getNextHighestDepth());
con = 0;
av.tip.ca._y = 27;
av.tip.ca._x = 12;
av._y = 160;
}
function pos() {
caj._x = av._x;
caj._y = av._y+40;
}
this.onEnterFrame = function() {
if (av._x == 660) {
removeMovieClip("av");
agre();
}
av._x += 5;
con++;
if (con == 55) {
av.tip.play();
removeMovieClip(caj);
av.tip.ca.removeMovieClip();
attachMovie("caja","caj",getNextHighestDepth());
pos();
}
if (av.hitTest(caj) == false) {
caj.play();
}
if (caj._currentframe == 1) {
caj._y += 10;
} else {
caj._y+=2;
}
};
La cosa es que el MC de instancia caj solo coje 1 como profundidad, y me daña la presentacion al incluirse en la esquina izquierda superior....HELP
