主题:  !!!n段声音的联播与跳播!!!

小春老师

职务:普通成员
等级:2
金币:1.0
发贴:257
#12003/8/21 8:19:34
n段声音的联播与跳播
在上一贴中我们完成了n段声音的联播问题,但我们不能对其进行控制,只能等他一直播完,那么能否对其进行控制呢,答案是可以的。在每段声音所在桢相对应的精灵通道1中加入控制按钮图片,然后给通道1中的精灵(按钮)添加行为:
on mouseenter me
cursor 280
end
on mouseleave me
cursor -1
end
on mousedown me
cursor 260
end
on mousewithin me
cursor 280
end
on mouseup me
cursor -1
go to the frame +1
end
加入这一段行为后,我们可以使用按钮,对声音进行一个一个的跳播。
大家可以使用上一贴中的例子,只是将声音换的长一些。

仅以此片献给那些美工好,但语言较弱的朋友们。