亲品藏
^
随机播放不同的背景音乐的方法

  如果面对着一成不变的背景音乐,听久了是不是很烦躁呢?那么,有什么方法可以实现,当画面不变时,也可以随机插放几个不同的背景音乐,而且要上一次放过的背景音乐下一次不能插放。

  在这里只用了一个帧行为。背景音乐用了三首不同的音乐。具体程序如下:

  on exitFrame me

  global k

  if soundBusy ( 1 ) then

  go to the frame

  else

  j= random ( 3 )

  if j=k then

  j= random ( 3 )

  else

  case j of

  1:sound( 1 ). play ( member ( "left" ))

  member ( 6 ). text = "left"

  2:sound( 1 ). play ( member ( "right" ))

  member ( 6 ). text = "right"

  3:sound( 1 ). play ( member ( "go" ))

  member ( 6 ). text = "go"

  end case

  k=j

  go to the frame

  end if

  end if

  end

  程序运行后的画面如图1所示。

  随机播放不同的背景音乐的方法
图1

  演员表中所用的演员如图2所示。

  随机播放不同的背景音乐的方法
图2

  在这里,三个背景音乐我用了完全导入影片的方式,实际应用时,不要用这种方式,应该用链接到外部文件的方式导入它们,因为采用完全导入方式时,背景音乐是要长期占用内存空间的,当背景音乐的容量很大时,会严重影响影片的速度,这是初学者常犯的错误。

相关阅读

CopyRight 亲品藏移动版(m.qinpinchang.com)