我正在 Flash 中创建一个动画菜单,我想将其嵌入到 PowerPoint 中,并且能够在单击 Flash 中的按钮时跳转到 PowerPoint 中的幻灯片。
在 Flash 中,与 PowerPoint 通信的代码是:
fig1.onRelease=function(){
fscommand("",2)
}
其中 fig1 是影片剪辑按钮,fscommand 将参数传递给附加到 PowerPoint 中嵌入的 SWF 的 VBscript。“2”是我希望它跳转到的幻灯片编号。
在 PowerPoint 中,我正在使用以下代码:
Private Sub ShockwaveFlash1_FSCommand(ByVal command, ByVal args)
With ShockwaveFlash1.SlideShowWindows(1).View
.GotoSlide (args)
End With
End Sub
此代码基于此网站上另一个帖子的代码,该帖子是对遇到类似问题的人的回答。
从嵌入在 PowerPoint 中的 Flash 文件链接到特定幻灯片
我的问题是它对我不起作用,我收到了这个 VB 错误:
Compile error:
Expected list separator or )
与此错误一起,“命令”一词在第一行中突出显示。