Hi, I have been stumbling on this for days...
I have a movie(wmv) i imported to a movie clip in flash. In this movie clip I also have a "slideshow" where it shows a presentation while the imported movie is playing. As of now each "slide" in the show is a movie clip. And it is all timed with the imported movie. The thing is, when I fast forward/rewind it gets mixed up. For example, it goes in to the second movie clip called "slide02" and then inside that if you fast forward the movie it only fast forward the MAIN imported movie and its just normally playing the slide movie. I have this script on the fast forward button:
Code:
on(press){
this.gotoAndPlay(this._currentframe+30);
slide01.gotoAndPlay(slide01._currentframe+30);
}
This code works. BUT it only works for the FIRST slide! (slide01)
There are 10 seperate slides(movie clips) that I have made and I want to be able to control the fast forward /rewind where ever the movie may be playing. Can anyone help me with this?
I was thinking use a variable "currentMovie = 0" (1,2,3,4,5, and so on) and set that currentMovie in an action layer where each new slide starts, then use that to replace the "slide01" below. Is this possible?
Doesn't work:
Code:
on(press){
this.gotoAndPlay(this._currentframe+30);
slide0+currentMovie.gotoAndPlay(slide0+currentMovie._currentframe+30);
}
Please help! Boss is getting on me.
Thanks in advance!