与 powerpoint 2007 中的 swf 交互的宏
我目前正在制作一个包含嵌入 swf 文件的 powerpoint 演示文稿。 swf 文件是一个执行一些计算的小应用程序。
嵌入 swf 文件没有问题,但我想知道是否可以使用 powerpoint 2007 中的 VB 宏与 swf 进行交互(例如从 swf 中读取值)?
我的主要目标是从计算中获取值(在 swf 中)并在演示文稿的后续幻灯片中使用这些值。
预先感谢您的任何帮助
I'm currently working on a powerpoint presentation which contains an embedded swf file. The swf file is a small app that does some calculations.
Embedding the swf file was no problem, but I would like to know whether or not it's possible to interact with the swf (e.g read values from the swf) with a VB macro from powerpoint 2007?
My main goal is to get values from the calculations (in the swf) and use these values in later slides of the presentation.
Thanks in advance for any help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
除了将 SWF 弹出到 PPT 中并让它们播放之外,我对 SWF 没有任何经验,但如果 SWF 公开任何属性/方法,则很可能是通过形状的 .OLEFormat.Object 对象。
或者,如果您可以控制 SWF,则可以修改它以调用子程序或设置从 PPT 公开公开的变量。
I've no experience with SWFs other than popping them into PPT and letting them play, but if the SWF exposes any properties/methods, it would be through the shape's .OLEFormat.Object object, most likely.
Or if you have control of the SWF, you might be able to modify it to call subs or set variables exposed publically from PPT.