all groups > flash actionscript > january 2005 >
You're in the

flash actionscript

group:

Frame TBox


Frame TBox GhettoFabFlah
1/12/2005 7:22:36 PM
flash actionscript:
I have been wondering if there was any solution to my problem. In one of my
flash documents, i have a button that does play and pause and there are
subtitles on the bottom (which are a movie clip). My problem is is that
whenever i pause the document, the subtitles keep going and get out of sync
(because they are a movie clip). Is there any way to solve this problem. I was
thinking something like on a frame it would have the subtitles in a Text box,
so that they wouldnt get out of sync, but i have no idea how. Could someone
show me how 2 do this or suggest a better way? Thanks alot
Re: Frame TBox kglad
1/12/2005 7:34:51 PM
pause and play that movieclip with the same button actions. for example:

playBtn.onPress=function(){
_root.play();
_root.subTitleMC.play();
}
pauseBtn.onPress=function(){
_root.stop();
_root.subTitleMC.stop();
}
Re: Frame TBox GhettoFabFlah
1/12/2005 8:27:27 PM
Hey. I tried that, but it didn't seem to do anything. I'm fooling around with
it now to get it to work, but so far no good. Do you put it on the button, or
the frame, or the text movieclip? thanks for the help
Re: Frame TBox kglad
1/12/2005 8:33:26 PM
Re: Frame TBox GhettoFabFlah
1/13/2005 12:21:37 AM
Re: Frame TBox kglad
1/13/2005 1:40:49 AM
AddThis Social Bookmark Button