主题:  播放完一段视频后如何自动跳入下一个场景

tuozhan

职务:普通成员
等级:1
金币:0.0
发贴:1
#12004/9/24 13:49:34
播放完一段视频后如何自动跳入下一个场景



Super ChiCk

职务:版主
等级:5
金币:15.0
发贴:3502
#22004/9/24 15:06:39
on exitframe me
if sprite("视频文件").movierate=1 then
go the frame
else
go "要跳转的movie名"
end if
end



thelcg

职务:普通成员
等级:1
金币:0.0
发贴:106
#32005/6/29 22:23:31
on exitFrame me
if sprite(N).movietime >= member("vedio").duration then
go "somewhire"
end if
end



freemedia

职务:普通成员
等级:1
金币:0.0
发贴:3
#42005/6/30 1:48:12
楼上的不错



小春老师

职务:普通成员
等级:2
金币:1.0
发贴:257
#52005/7/9 11:40:21
也可以侦测通道,将视频文件放在某一通道中,让后添加语句,如果通道繁忙继续停留在当前位置,如果不繁忙,跳转到下一目标.我现在在网吧,编码过后补上




职务:普通成员
等级:1
金币:0.0
发贴:34
#62005/7/9 22:25:00
我是用Windows Media 的方式import 的,这种方式全屏拉大影像效果特别好,但不支持上面的语句,哪位知道这种方式导入该如何判断呢?


说得越多越糟糕,说得越少越悬乎。

woshihuli

职务:普通成员
等级:1
金币:0.0
发贴:9
#72005/7/21 10:30:22
一招土办法,视频不出声,声音提出来作成音频格式,这样,用SOUND的属性控制也可以了



段氏

职务:普通成员
等级:1
金币:1.0
发贴:196
#82005/7/26 11:09:14
影片做片头播放完前进!
on exitframe
if (the currenttime of sprite 1) < (the duration of the member of sprite 1) then
go to the frame
else
go to the frame + 1
end if
end

FLASH做片头播放完前进!
on exitframe
if sprite(1).frame<sprite(1).member.framecount
then
go to the frame
else
go to the frame + 1
end if
end