views:

212

answers:

1

I basically have a series of small SWF Files. I have used SWFObject to play them, but how do I get a series of SWF videos to play sequentially even though they are separate SWF files?

+1  A: 

You can listen for the enterFrame event, loading the next SWF file when the currentFrame reaches currentScene.numFrames/2 and start playing the next SWF when it reaches currentScene.numFrames-1.

Michael Aaron Safyan
are these events available via some sort of javascript api?
Dkong