Quote from Se7enso you want two clickables movieclips ?
one takes you to a url and the other plays an animation ?
mc1.onRelease = function(){//this goes to the url you write
getURL("YOUR LINK",_blank)
}
mc2.onRelease = function(){//this plays the animation
gotoAndPlay("THE NAME OF THE 1st FRAME IN THE ANIMATION")
}
Quote from Se7enput this code in the first frame
mc1.onRelease = function(){//this goes to the url you write
getURL("YOUR LINK",_blank)
}
mc2.onRelease = function(){//this plays the animation
gotoAndPlay("THE NAME OF THE 1st FRAME IN THE ANIMATION")
}