I don’t have the time to read all post in this forum, so I (myabe) could help myself, but… I have a little problem with a animation… ( you can se my animation here: www.john5.dk/horror.html )
How do I make a “replay” button on my animation??
(When the “movie” is over, I want to click on a button, and see the “movie” again)
It doesnt take hours…
Besides it does work, if the animation is on the main timeline then replace mc_to_reply with _root, or _parent if its relative parent
Put this code on a movieclip that represents the replay button
on(release){
_parent.gotoAndPlay(1);
}
Im just sticking the fla up somewhere so you can have it, but all you need todo is give the head an instance name(in the properties area, i called it mc_head)
Then click the replay button, open up the actions panel and add this code
on(release){
mc_head.gotoAndPlay(1);
}