为 flashvars 属性设置值不起作用

发布于 2024-11-30 00:29:34 字数 477 浏览 2 评论 0原文

当使用 vba 将 shockwave flash 影片插入 PowerPoint 2010 时,我尝试设置属性 FlashVars 的值,如下所示:

Dim s As Shape
Set s = ActivePresentation.Slides(1).Shapes.AddOLEObject(0, 0, -1, -1, ClassName:="ShockwaveFlash.ShockwaveFlash")

With s.OLEFormat.Object
    .FlashVars = "parm1 = val1"
    .EmbedMovie = True
    .Movie = "D:\Samples\test.swf"
End With

但是,在执行设置命令 (s.OLEFormat.Object.FlashVars = "parm1 = val1" ) 后, FlashVars 保持为空。你对这种奇怪的行为有什么想法吗?

谢谢,

I'm trying to set value to the property FlashVars when inserting shockwave flash movie to PowerPoint 2010 using vba like this:

Dim s As Shape
Set s = ActivePresentation.Slides(1).Shapes.AddOLEObject(0, 0, -1, -1, ClassName:="ShockwaveFlash.ShockwaveFlash")

With s.OLEFormat.Object
    .FlashVars = "parm1 = val1"
    .EmbedMovie = True
    .Movie = "D:\Samples\test.swf"
End With

However, after executing the setting command (s.OLEFormat.Object.FlashVars = "parm1 = val1" ), the value of FlashVars remains empty. Do you have any idea about this weird behavior ?

Thanks,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

紫南 2024-12-07 00:29:34

我不知道以这种方式嵌入 Flash,但在浏览器中,定义 FlashVars 对象的另一种方法是将变量附加到 SWF 文件名。如果没有找到合适的解决方案,这可能值得一试。

.Movie = "D:\Samples\test.swf?parm1=var1"

I have no idea about embedding Flash in this fashion, but in the browser an alternative to defining a FlashVars object can be to append the variables to the SWF file name. That might be worth a try if a proper solution does not present itself.

.Movie = "D:\Samples\test.swf?parm1=var1"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文