I am attempting to create this intro so that when the user rolls over the vegtable (mc) and clicks on it, it plays the rest of the timeline within the parent mc. This is the code I put on each mc:
you’ll see that what I want to do is make it so that the 2 tomatoes, basil, onion and garlic all serve as buttons to play the rest of the parent mc. Any help would be much appreciated! THANK YOU!!
I want the (tomato or other veggie) mc to play so that the graphic moves up a bit, and then when the user releases, I want the rest of the parent mc to play.
no problem, just remeber targeting. You were referring to “this” with the on handler, anything within that handler will happen to “this” item(a.k.a: the button).
Also you could also use “_root.play();”, but this may create issues if you load this movie in another movie. So try to stick with relative targetting, like “this._parent.” then your always cool.