here's what i did....
the mc60 when clicked plays itself and mc50
when clicked again it just plays....
the way you have your mcs set up is....
mc60 plays ---> then stops --->when play again....->it goes backwards.
same scenerio w/ mc50
.....
Not sure if your a newbie...but I ....
to view the code....click on mc60 and then view Action
and you;'lll see where i placed the script.
All i did was but this script on mc60
ActionScript Code:
onClipEvent(enterFrame)
{
this.onRelease = function()
{
this.play();
_root.mc50.play();
} // End of onRelease
}