Question making a 'multiple swf '- player

JenteBosmans

New member
Joined
Feb 16, 2013
Messages
1
Location
Turnhout
Programming Experience
Beginner
I want to make a program to play multiple swf-files after eachother in a loop.
I'll be putting them all in a folder and then the prgm needs to play all the files in the folder.

Until now i just use a timer to play a file but the times can change now. So is there an easier way to play all those files automatically or so??

code i use now to play swf when i hit the button:

VB.NET:
With AxSWF
                .Stop()
                .Refresh()
                .Movie = Application.StartupPath & "\swfs\reclame2.swf"
                .Rewind()
                .Play()
End With

All help is welcome!
thnx already.
 
Back
Top