[LEFT]Hi everyone,
I trying to make this function work but i think i am stuck. please can someone help
project outline:
Web graphics that will load into an empty mc container.
once loaded when user clicks another button the mc wil finish play in reverse.
once the revers is complete, it will load another movie clip in container
here is my starting script
///rewind function
container.onEnterFrame = function() {
if (rewind == true) {
prevFrame();
}
};
///creating new empty mc and loading movie into it
but.onPress = function() {
_root.createEmptyMovieClip(“container”, 1);
loadMovie(“loaded.swf”, “container”);
container._x = 150;
container._y = 20;
};
///calling function when rewined when rewind is done, load next movie
but2.onPress = function() {
container = function() {
rewind = true;
loadMovie(“loaded2.swf”, “container”);
};
};
Thanks
Louis
[/LEFT]