主题:  一个有关filmloop的问题。急~~~~~!求救!

toe

职务:普通成员
等级:1
金币:0.0
发贴:12
#12000/12/25 2:02:27
我在做一个多媒体演示时,碰到这样的问题:
我做了一个filmloop表先一个球体转动,将此引入score后,希望能够在整个演示当中,都会平滑持续转动。
可由于要兼顾声音与图像的配合,我便在声音通道的好几个地方定义了wait的命令,于是球体在有wait处停止转动,造成球体转动断断续续。
有什么方法能够解决呢?使声音与图像即能配合,球体又能平滑持续转动?
请各位大虾帮忙,万分感谢。



johnson_5d

职务:普通成员
等级:1
金币:0.0
发贴:6
#22000/12/25 9:20:59
在需要等待的地方请用程序控制等待时间,
下面是一个等待3秒的例子:

on beginsprite
starttimer
end

on exitframe
if the timer>3*60 then
go the frame+1
else
go the frame
end if
end

或者用这一个Behavior就行了,把它拖到帧通道上,然后给出想要停留的时间就可以了。

property second

on beginSprite me
starttimer
end

on exitFrame me
if the timer>second*60 then
go the frame+1
else
go the frame
end if
end


on getPropertyDescriptionList
set p_list = [#second: [ #comment: "second:", #format: #integer,#default: 3]]
return p_list
end


on getBehaviorDescription
return "wait this frame of second"
end


编辑历史:[这消息被johnson编辑过(编辑时间2000-12-25 16:22:13)]


愁眉不展

职务:普通成员
等级:1
金币:0.0
发贴:114
#32000/12/26 17:59:50
对于有filmloop的地方,不要用wait,用循环判断声音的播放就可以啦,如果想精确保持与图片的同步,可以考虑使用.mov格式。



dexn

职务:普通成员
等级:1
金币:1.0
发贴:157
#42000/12/27 10:48:37
也可以用声音的索点