Flash flv question
Flash flv question
Out of context: Reply #4
- Started
- Last post
- 12 Responses
- davi-t0
embed FLV into movieclip, give movieclip an instance name, (ie. "flv_mc") attach code on _root to check when the FLV mc is done playing and then tell root to go to frame 5 when flv_mc has reached its last frame.
ie:
flv_mc.onEnterFrame=function(){
if (flv_mc._currentframe == flv._totalframes){
flv_mc.stop();
_root.gotoAndStop(5);
delete flv_mc.onEnterFrame;
}