Hola Arok:
Crea una capa para las acciones y escribe éste código:
Código actionscript:
Ver originalstop();
_root.bola.onPress = function() {
_root.bola.startDrag();
};
_root.bola.onRelease = function() {
if (_root.bola.hitTest(_root.hueco)) {
stopDrag();
gotoAndStop(5);//aquí cambia el numero del frame a donde quieres ir
}else{
bola._x = 110;
bola._y = 46;
stopDrag();
};
}
Espero haberte sido de ayuda.