Basically, when an MC touches another MC, it moves to a different frame of the actual movie. The problem is, I want the coordinates of the MC that touched the other to change after the actual movie has gone to the frame it was told to. This is the AS I have right now, in which the coordinates wont change:
onClipEvent(enterFrame) {
if (this.hitTest(_root.rah)) {
_root.gotoAndStop(“2”);
tellTarget(_root.rah) {
_x=36;
_y=197;
}
}
}
I think I might have an idea on how to fix it that I just thought of, but now I have to go somewhere till 12:30 so yeah >_>