Hi,
Using the following to move one item to a certain place once the first item has reached there:
[AS]
if (mc_skip._y - 1 < 20 && mc_skip._y + 1 > 20) {
mc_skip._y = 20;
mc_skip_b._y = 20;
//the movieclip is within 1 point of where you want it
}
this.onEnterFrame = function(){
trace(“Button:” + mc_skip_b._y);
trace(“Text:” + mc_skip._y);
}
[/AS]
Ok, so really, why does the mc_skip_b not move to 20 _y? I am tracing it, and it’s definately going to 20 _y so I don’t get it?
Cheers,
Chris