我有一个swf对象,我想使用COM Shockwave Flash对象控件嵌入。我一直在搜索,但我只找到了涉及使用文件或互联网网址的答案。当我使用一键式发布方法时,我希望能够将我的flash对象作为资源文件嵌入到我的应用程序中。
谢谢,
马特
答案 0 :(得分:0)
我过去做过类似的事情,但是从数据库表而不是资源
加载Swf是表单上的AxShockwaveFlash对象,用于显示flash项目。
如果将资源添加为.swf并将FileType设置为二进制,则应将其作为字节数组返回,然后可以在memorystream构造函数中使用
Using ms As New IO.MemoryStream(my.resources.TheFlashFile), fs As New IO.MemoryStream()
Using bwriter As New IO.BinaryWriter(fs)
' Write length of stream for flash AxHost.State
bwriter.Write(8 + ms.ToArray.Length)
bwriter.Write(&H55665566)
' Length of flash movie file
bwriter.Write(ms.ToArray.Length)
bwriter.Write(ms.ToArray)
fs.Seek(0, IO.SeekOrigin.Begin)
swf.OcxState = New AxHost.State(fs, 1, False, Nothing)
End Using
End Using