m02a
05-14-2007, 06:57 PM
I used this script to play a movie backward:
this.onEnterFrame = function(){
if(rewind == true){
prevFrame();
}
}
I want to use another movie clip so that when I press one of them, the other one rewinds.
I think it might be like this (assuming that the one to be rewinded is dap, and zap is the one to be pressed. I'm writing this code in zap's 1st frame):
this.onPress = function(){
_root.dap.rewind = true;
}
But that doesn't work; since there is a rewind function for FLVPlayback. Even if I changed rewind to something else, it doesn't work; since rewind is isn't like stop or play functions.
Does anyone have any solution or suggestion?
this.onEnterFrame = function(){
if(rewind == true){
prevFrame();
}
}
I want to use another movie clip so that when I press one of them, the other one rewinds.
I think it might be like this (assuming that the one to be rewinded is dap, and zap is the one to be pressed. I'm writing this code in zap's 1st frame):
this.onPress = function(){
_root.dap.rewind = true;
}
But that doesn't work; since there is a rewind function for FLVPlayback. Even if I changed rewind to something else, it doesn't work; since rewind is isn't like stop or play functions.
Does anyone have any solution or suggestion?