i am making my first interactive flash animation (website)
when you press a link, it will load on top of the previous movie.
i hope im saying this clear.
to make it even easier i zipped all of the files into 1 file, and made it downloadable, every other tip you can give me on this project, are ofcourse very welcome!! but keep it simple… i’m just a newbie
from what i see on your flash file…it looks like you’re asking how to erase the previous movie so the text doesn’t overlap.
This is your code on one of your buttons.
on (release) {
loadMovieNum("dennis.swf", "3");
}
You’ll have to put in an UnLoadMovie a/s so that it removes the previous movie, thus giving you a cleared screen to work with.
I’ve put the code you should use below
on (release) {
loadMovieNum("dennis.swf", "3");
}
on (releaseOutside) {
unloadMovieNum(3);
}
I used the 3 because that’s the layer you’ve told it to load it. So that’s where it will look to erase it. Is there a specific reason you’ll need them all on different layers? I think you should just tell them to all load on layer 3 and then you’ll just use this code on each one. The only change you’ll make is the .swf obviously.