AxShockwaveFlash com 组件的停止方法尝试读取或写入受保护的内存
我正在使用 AxShockwaveFlash com 组件在 Windows 应用程序中显示 Flash 文件。
,我调用 Stop() 方法来停止闪光。
但某些用户会抛出异常“尝试读取或写入受保护的内存,这通常表明其他内存已损坏”。
请让我知道为什么少数用户会发生这种情况。
提前致谢。
I'm using AxShockwaveFlash com component to show a flash file in windows application.
, I call the method Stop() to stop that flash.
But some of the users, its throwing the exception "Attempted to read or write protected memory,This is often an indication that other memory is corrupt ".
Please let me know why this is happening for few users.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不确定 Windows 形式的嵌入式 Flash 内容是否需要与 JavaScript 和 JavaScript 相同的内容。 HTML 实现,但通常您只会通过ExternalInterface 类(即在AS3 中)公开Flash 影片的基本方法。
基本上,您使用ExternalInterface 来启用可以从其外部容器访问哪些方法。
I'm not sure windows-form embedded Flash content requires the same as JavaScript & HTML implementation, but usually you would only expose the essential methods for your Flash movie through the ExternalInterface class (in AS3 that is).
Basically you use ExternalInterface to enable which methods can be accessed from its outside container.
您是否尝试以“以管理员身份运行”身份运行应用程序,然后检查它是否引发错误。
Did you try running your application as "run as administrator" check if it throws an error then.