you’re not changing the speed var on enterframe…
you should be calculating the distance to the end of the transition…by its X. something like this:
this.onEnterFrame = function(){
if(chosenOne_mc._x >=Stage.width/2){
speed = -(Stage.width/2-chosenOne_mc._x)/3000 // well you know a bit of as play with this
}else{
speed = (home.Escolhido._x-Stage.width/2)/3000 // well you know a bit of as play with this
}
}
in the end, speed will be about 0. and you can call the rest of the functions
the Stage.width/2 is suposed to be the center of the carousel…
don’t disable the carousel, carousels are cool