Ver Mensaje Individual
  #4 (permalink)  
Antiguo 30/05/2010, 15:52
Avatar de santirekapo90
santirekapo90
 
Fecha de Ingreso: marzo-2010
Mensajes: 158
Antigüedad: 14 años, 1 mes
Puntos: 8
Respuesta: cuando el mc este en determinado fotograma

GRACIAS, SOLUCIONADO: CAMBIÉ EL "this." por "_root"



Hola santirekapo90, oye es algo asi:

_root.tuMc.onEnterFrame = function()
{
//si el fotograma actual de tuMc es 20
if(this._currentframe == 20)
{
//que se reproduzca el fotograma 31 de tuMc
C.gotoAndPlay(31);
}
};