I'd tried to use this code but it only plays the last one, it didn't play the first one.

for example:
flashArray(0) is C:\Documents and Settings\John-no\Desktop\flash1.swf
flashArray(1) is C:\Documents and Settings\John-no\Desktop\flash2.swf
flashArray(2) is C:\Documents and Settings\John-no\Desktop\flash3.swf

vb Code:
  1. For x = LBound(flashArray) To UBound(flashArray)
  2.         swfCE.Movie = flashArray(x)
  3.         swfCE.Play
  4.     Next x