|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
“fla”是Flash的原始档,只能用对应版本或更高版本的Flash打开编辑。
poluoluo中心提醒:在FlashPlayer里播放声响的两种办法.
1、创建Sound工具用load()办法加载内部的mp3来播放;
2、让Sound工具监听sampleData事务,如许能够播放由程序静态天生的声响,比方:
上面的示例播放复杂的正弦波。- varmySound:Sound=newSound();functionsineWaveGenerator(event:SampleDataEvent):void{for(varc:int=0;c<8192;c++){event.data.writeFloat(Math.sin((Number(c+event.position)/Math.PI/2))*0.25);event.data.writeFloat(Math.sin((Number(c+event.position)/Math.PI/2))*0.25);}}mySound.addEventListener(Event.SAMPLE_DATA,sineWaveGenerator);mySound.play();
复制代码
Flash动画说到底就是“遮罩+补间动画+逐帧动画”与元件(主要是影片剪辑)的混合物,通过这些元素的不同组合,从而可以创建千变万化的效果。 |
|