Cita:
Iniciado por juan_14nob y como haria eso??
que, explicar el fla?? pues diciendo las capas que tiene,
los mc que tiene, en donde se encuentra c/u, etc
si vamos a la función se podría hacer así
Código actionscript:
Ver originalbt1.onPress=function(){
mcamover.gotoAndStop(1);
}
bt2.onPress=function(){
mcamover.gotoAndStop(2);
}
o así
Código actionscript:
Ver originalfunction mover(mov:Number):Void{
mcamover.gotoAndStop(mov);
}
bt1.onPress = function(){
mover(1);
};
bt2.onPress = function(){
mover(2);
};
por ej
saludos