First of all, sorry to ask this question again, for it's bound to have been answered several times, but unfortunetly the Search function gave me a DBase error...

Anyhow... I have a Movieclip and inside is an invisible button. I want the movie to jump to frame 30 on the main timeline (or to "Enter" which is the framelabel at frame 30)

So I attached this code to my invisible button.
Code:
on (release){
	_root.gotoAndPlay(30);
}
however, this doesn't seem to work, when clicked, the movie jumps to where the button was introduced to the timeline (frame 13 instead of frame 30)

Thx in advance