Hello,
I have created a list of buttons, which all use the tell target action. I have a seperate window where each button (on release) triggers its on movie clip. Everything works fine, as far as the movie clips running on the tell target action. (thanks to the fine tutorial on tell target here)
My problem is the movies are overlapping in the window.
How do I make the movie that is displayed from a button click go away when the next button is clicked??
I do want this movie to remain in the window until the next button is pressed.
Thanks for the reply,
I sort of understand, what you are saying.
This is my code:
on (release) {
tellTarget (jeremytop) {
gotoAndPlay (1);
play ();
}
}
what would I add after this to make the other targets unload out of the window where I am displaying them?