主题:  关于影片播放

sunshine0510

职务:普通成员
等级:1
金币:0.0
发贴:29
#12004/1/25 14:06:20
在 Director MX中安装了DirectMedia Xtra插件

播放 mpg 文件 播放完这个mpg文件怎么使它进下一画面?(让它自动播放,不需要鼠标的点击)

这个MPG文件较长有10分钟 我在时间轴上占了12帧,加入代码
on exitFrame me
go to the frame
end

影片可以完整得播放完,然后就停在那里,进不了下一帧。我知道代码有问题,太菜,哪位高手给个正确的。

先谢了!急!!



Super ChiCk

职务:版主
等级:5
金币:15.0
发贴:3502
#22004/1/25 17:14:26
on exitframe me
if sprite(mpgspritenum).movierate=1 then
go the frame
else
go the frame +1
end if
end
或者在桢速率通道上设置wait for the cuepoint



sunshine0510

职务:普通成员
等级:1
金币:0.0
发贴:29
#32004/1/26 13:04:43
好象两个都不行啊

我加了
on exitframe me
if sprite(1).movierate=1 then
go the frame
else
go the frame +1
end if
end

MPG文件没有播完,就进入下一个帧了
(MPG在时间轴上只占了12帧,就只播12帧,直接进入了第13帧)

另外一个“桢速率通道上设置wait for the cuepoint”是加在哪里啊
我加代码
on exitFrame me
wait for the cuepoint
end
告诉我语法错误啊也不行

在DIRECTRT中加flash,
加代码
on exitFrame me
if sprite(1).playing then --???Flash ???Sprite
go to the frame
end if
end

不管flash有多长,它会运行完后顺利进入下一帧!我希望就是和这个一样的效果。

用director我是新手,请指点!急!(工作中要用到)

非常感谢!新年快乐!



sunshine0510

职务:普通成员
等级:1
金币:0.0
发贴:29
#42004/1/26 16:19:59
还有,如果是avi文件是不是和mpg一样处理?



sunshine0510

职务:普通成员
等级:1
金币:0.0
发贴:29
#52004/1/27 10:55:24

相关文件:点这儿打开

就上述的问题我做了一个简单的test.dir 

各路高手 求救啊



sunshine0510

职务:普通成员
等级:1
金币:0.0
发贴:29
#62004/1/28 9:04:08
wait for the cuepoint

用这个我搞定了 谢谢ccloveaa