how to make thise:
Form3 to have 1 .swf file that will apear when the program starts after the .swf fineshes to show Form1 ?
Printable View
how to make thise:
Form3 to have 1 .swf file that will apear when the program starts after the .swf fineshes to show Form1 ?
If you know the play length of the swf file, you can use a webbrowser control and a timer to do this. Add a WB and a Timer to your Form3. Set the timer.Inverval = the length of the movie. On Form3.Load, you navigate the WB to the swf file and start the timer. In the timer.tick event handler, you close form3 and show form1.