Con esto te funciona:
   
Código ACTIONSCRIPT:
Ver originalonClipEvent(load)
{
    this.stop();
}
on(press)
{
    this.play();
}
 
on(release)
{
    this.stop();
}
 
on(releaseOutside)
{
    this.stop();
}
  
Y esto también te funciona tal cual el codigo anterior pero colocando el codigo en el fotograma principal.    
Código ACTIONSCRIPT:
Ver originalthis.animacion_mc.stop();
this.animacion_mc.onPress = function()
{
    this.play();
};
this.animacion_mc.onRelease = function()
{
    this.stop();
};
this.animacion_mc.onReleaseOutside = function()
{
    this.stop();
};
  
Mis saludos.