Hello!
Im working on a personal animation using lots of different action scripts and effects I have found on the net. I want the animation all to be based within 1 scene.
On my main "time line" Frame (20) I have a script for snow to fall,
init = function () {
//This is where the rest of the script is.
}
init();
The main "time line" then stops on frame (50) with a "stop();" where their is also a movie clip that contains the next part of the animation.
It's within this movie clip that I want to be able to tell the original
init = function () {
To stop!
I have been trying things like this but I really dont know what else to do other than making another scene. ):
onEnterFrame;
_root.init = function (stop) {
}
or
onEnterFrame;
_root.init;
stop;
And a whole load of others! I'm totaly off the mark on this and could really do with some help.
Cheers Guys and Girls!
JOe


Reply With Quote
