I'm using the AxShockwaveFlash object to load an extern .SWF file into my C# application. The AxShockwaveFlash takes in a URL for the movie to load. To load a local file, I can use a file:/// url string, which works fine.
However, I'd really prefer that the SWF be embedded in the compiled executable, but the the AxShockwaveFlash object requires the string url to load.
Does anyone have any good ideas on how this can be achieved, short of writing the file to a location on the computer when the executable is run?
Thanks.