vote up 0 vote down star
1

I'm embedding a Flash ActiveX control in my C++ app (Flash.ocx, Flash10a.ocx, etc depending on your Flash version).

I can load an SWF file by calling LoadMovie(0, filename), but the file needs to physically reside in the disk. How to load the SWF from memory (or resource, or stream)? I'm sure there must be a way, because commercial solutions like f-in-box's feature Load flash movies from memory directly also uses Flash ActiveX control.

flag

4 Answers

vote up 1 vote down check

Appearantly I a going to need to supply details for a vote 'up'.. OK.

The internal flash buffer when first initiailized indicates if a movie is loaded or if the buffer hold properties in the buffer fisrt four bytes.

gUfU -- no movie loaded. properties to follow ....

fUfU -- .. [4bytes] size as integer.

then the UNCOMPRESSED movie or SWF as it were. Write a IStream class. fill with above. save as szFile

TFlashStream *fStream = new TFlashStream(szFile);
// QI flash player

IPersistStreamInit * psStreamInit = 0;
shock->QueryInterface(::IID_IPersistStreamInit,  
                     (LPVOID*)&psStreamInit);
if(psStreamInit)
{
    psStreamInit->InitNew();
    psStreamInit->Load(fStream);
    psStreamInit->Release();
}
delete fStream;

Things to note : When psStreamInit->Load(fStream); will call IStream::Read looking for the header 'fUfU'.

if the return is correct psStreamInit then calls IStream::Read for the buffer size.

If everthing looks good so far, psStreamInit then reads in 1024 byte chunks until the read is exhausted. However. for the header and file size.

STDMETHOD(Read)(void *pv, ULONG cb, ULONG *pcbRead)

pcbRead is invalid. you may want to use something like IsBadReadPtr

--

Michael

link|flag
vote up 0 vote down

Being a flash guy I don't know any details on the C++ side, but if you made a request on the Flash side to a fake protocol, on the C side can you intercept that request and answer it with a data stream? I mean something like:

var mc:MovieClip = createEmptyMovieClip( "mc", 0 );
mc.loadMovie( "fakeprotocol://"+filename )

As long as the response looks (to Flash) like an HTTP stream, that ought to work. (Apologies in advance if the "intercept the request and return a data stream" is the part you're asking for help with.)

link|flag
Yeah, part of my problem is how to intercept it. – yuku Jan 8 at 10:08
vote up 0 vote down

in addition.... Flash player promotes IPersistStorage. flash.QI IPersistStorage pStorage.load (mystorage_as_stream)

.. in theory.

Sorry for the above.. I intended to post Flash player promotes IPersistStreamInit. flash.QI IPersistStreamInit pStream.load (my_stream)

Michael

link|flag
vote up 0 vote down

This method don't work when you try to load a movie via the MovieclipLoader or LoadMovie from another movie!!!

The result is to replace the calling SWF file!! ...so this method work only for loading the base file.

Someone know a better method that work also with MovieClipLoader and LoadMovie? Thanks.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.