PDA

View Full Version : tell target Plz Help



BobbyD
August 31st, 2003, 10:40 PM
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.

Any help, greatly appeciated.

BobbyD

reverendflash
August 31st, 2003, 11:00 PM
you could always use the same code to tell all the other targets to go back to where they started...

if you understand...

Revhttp://www.aulman.com/rev.gif

BobbyD
September 1st, 2003, 03:51 PM
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?

Also what action would do this "unload"?

Thanks agian,
BobbyD

reverendflash
September 1st, 2003, 03:59 PM
just tell them to gotandstop at the beginning...

Revhttp://www.aulman.com/rev.gif

reverendflash
September 1st, 2003, 04:16 PM
if they were stopped to begin with, then just tell them to go back to that spot...

TellTarget is no longer supported... dot syntax is now used. I would get used to using dot syntax ASAP...

if you want, post your .fla, and I will see what you are doing.

Revhttp://www.aulman.com/rev.gif

BobbyD
September 1st, 2003, 08:09 PM
Ok thanks, let me try it tonight and see how it goes. I will let you know how it goes.

thanks agian,
Bobby

BobbyD
September 4th, 2003, 07:33 PM
Thanks for the help. I have it working now.

Bobby