Guest - Rodrigo - Posted November 12, 2004 Report Share Posted November 12, 2004 galera, tenho esses comandos aqui num arquivo e preciso comentaralguém me ajuda urgentesetProperty("", _y, getProperty("", _y)-20);if (Number(getProperty("", _y))<0) { removeMovieClip("");}if(this.hitTest(_root.inimigo2)){ _root.inimigo2.gotoAndPlay(16);}startDrag("arma",true);mouse.hide();duplicateMovieClip("a","a"+i,i);i++;if(i>50){i=1;}if(_root.inimigo2.hitTest(_root.arma)){ _root.inimigo2.gotoAndPlay(15); Quote Link to comment Share on other sites More sharing options...
0 Teufel Posted November 15, 2004 Report Share Posted November 15, 2004 setProperty("", _y, getProperty("", _y)-20); //move o movieclip sem nome 20 pixels pra cima if (Number(getProperty("", _y))<0) { removeMovieClip(""); } //se a opsição do movieclip sem nome em relação ao eixo das ordenadas //(_y) for negativa, ou seja o movieclip está fora da tela remove ele if(this.hitTest(_root.inimigo2)){ _root.inimigo2.gotoAndPlay(16); } //se o movieclip trombou no inimigo, o inimigo vai pro quadro 16 startDrag("arma",true); mouse.hide(); //oculta o mouse e usa o mc arma no lugar dele duplicateMovieClip("a","a"+i,i); //duplica o movie clip a i++; if(i>50){ i=1; } //se duplicou mais de 50 volta pro primeiro if(_root.inimigo2.hitTest(_root.arma)){ _root.inimigo2.gotoAndPlay(15); } //se a arma trombar no inimigo ele vai pro quadro 15 Quote Link to comment Share on other sites More sharing options...
Question
Guest - Rodrigo -
galera, tenho esses comandos aqui num arquivo e preciso comentar
alguém me ajuda urgente
setProperty("", _y, getProperty("", _y)-20);
if (Number(getProperty("", _y))<0) {
removeMovieClip("");
}
if(this.hitTest(_root.inimigo2)){
_root.inimigo2.gotoAndPlay(16);
}
startDrag("arma",true);
mouse.hide();
duplicateMovieClip("a","a"+i,i);
i++;
if(i>50){
i=1;
}
if(_root.inimigo2.hitTest(_root.arma)){
_root.inimigo2.gotoAndPlay(15);
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.