Mi sembra che non funzioni:
Ho inserito sulla MC
codice:
onClipEvent (load) {
	this.stop();
}
onClipEvent(mouseMove){
    if(this.hitTest(_root._xmouse,_root._ymouse, true)){
        sopra = true;
    }else{
        sopra = false;
    }
}
onClipEvent(mouseDown){
    if(sopra){
	_root.lastOne = this;
	this.gotoAndStop(2);
	this.estratti.push(1);
    }
} {
e su un bottone:
codice:
on(release){
	function annulla()
{
	_root.lastOne.gotoAndStop(1);
}
}