[RESOLVED] Play flash videos on a form
whats the best way to play flash videos like youtube on forums
eg
<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/F1jQZ2KeKfc"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/F1jQZ2KeKfc" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object>
Re: Play flash videos on a form
Probably best to host a Windows Media Player on your form and set the source. Or you could host a web browser control on the form with the embedded player link code you posted.
All you really need is:
<embed src="http://www.youtube.com/v/F1jQZ2KeKfc" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed>
Re: Play flash videos on a form
thanks rob. going to use the browser