ups sorry no entedi bien
usa el _currentframe y _totalframe
debe ser algo asi, si carga y hace play automatico
Código :
on(Press){
if tuswf._currentframe == tuswf._totalframe{
tuswf.gotoAndPlay(1);
}
}o tambien puede ser, si es stop esta al inicio y al ultimo tambien lo hay
Código :
on(Press){
if tuswf._currentframe == 1 or tuswf._currentframe == tuswf._totalframe{
tuswf.gotoAndPlay(2);
}
} de esta forma mientras este en repoduccion no funcionara
es algo asi chekalo
Saludos