If you meant a Flash Player with controls like the one described here
http://iwebfaq.org/site/iWeb_Movies.htmlin Chapter 6 follow the tutorial but instead of using the code on the page use this one:
<object id="player" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" name="player" width="400" height="315">
<param name="movie" value="/mediaplayer/player.swf" />
<param name="allowfullscreen" value="true" />
<param name="allowscriptaccess" value="always" />
<param name="flashvars" value="file=/mediaplayer/video.flv&image=/mediaplayer/preview.jpg&autostart=true" />
<embed
type="application/x-shockwave-flash"
id="player2"
name="player2"
src="/mediaplayer/player.swf"
width="400"
height="315"
allowscriptaccess="always"
allowfullscreen="true"
flashvars="file=/mediaplayer/video.flv&image=/mediaplayer/preview.jpg&autostart=true"
/>
</object>
The difference is the
&autostart=true
I added twice in the code where it says flashvars. This way the video starts automatically when the page loads.
Regards,
Cédric