I have a scenario where there are several movieclips within a single fla. I would like to export each movieclip as its own swf, but the catch is that I want to export it so that it can stream.
When exporting a normal .fla with movie content in the main timeline, the resulting swf is able to stream -- it can start playing before it has loaded 100%.
When I use the JSFL function: document.exportSWF([fileURI [, bCurrentSettings]]), the resulting .swf must load 100% before it can start playing. This is because it exports as a timeline with an instance of the movieclip. The main timeline is only one frame and the actual movie content is nested in that frame.
I'm wondering how, with JSFL (or any other way that's isn't manually copying the frames), to take a movieclip and export it to a swf that can stream, so that the movieclip itself IS the main timeline.