Hi, ciuly! I hope I can help you...
Check out this address: http://www.delphiflash.com
To play a swf file from a stream you can use the following piece of code:
var
Movie: TFlashMovie;
MS: TMemoryStream;
begin
MS := TMemoryStream.Create;
{ ...your code here... }
FlashPlayerControl.PutMovi
MS.free;
end;
Main Topics
Browse All Topics





by: RadikalQ3Posted on 2005-08-20 at 09:31:47ID: 14716029
Hi!
Have you downloaded the demos?
It seems to be able to play embedded swf too...
I think that is the same mehod used for the Flash Video (FLV)
In fact, the sample2 is called:
Sample2_SWF_FLV_Embedding
From its readme file:
This sample shows how to load and play SWF/FLV directly from TStream...