Use Flash in VS2005 Project?

  • Thread starter Thread starter David C
  • Start date Start date
D

David C

Is it possible to incorporate Flash player into an ASP.Net web site? If so,
can someone point me to more information on this? I would like to be able
to play back some video on a web. Thanks.

David
 
You embed a Flash video player in an ASP.NET web page exactly the same way
you do it on any other web page. Sample code:

<object width="320" height="240"
classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
codebase="http://fpdownload.macromedia.com/pub/
shockwave/cabs/flash/swflash.cab#version=8,0,0,0">
<param name="flashvars"
value="file=http://www.myhomepage.com/myvideofile.flv" />
<param name="movie" value="http://www.myhomepage.com/flvplayer.swf" />
<embed src="http://www.myhomepage.com/flvplayer.swf" width="320"
height="240" bgcolor="#FFFFFF" type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/go/getflashplayer"
flashvars="file=http://www.myhomepage.com/myvideofile.flv" />
</object>

And here's a link to a "how to":
http://forum.videohelp.com/topic315188.html
-- Peter
Recursion: see Recursion
site: http://www.eggheadcafe.com
unBlog: http://petesbloggerama.blogspot.com
BlogMetaFinder: http://www.blogmetafinder.com
 
Is it possible to incorporate Flash player into an ASP.Net web site? If so,
can someone point me to more information on this? I would like to be able
to play back some video on a web. Thanks.

David

There are many free flash video player on the web, just ask google.
For controling the flash movie i use SWFObject, a free javascript
library.
http://blog.deconcept.com/swfobject/
Best regards.
Oscar Acosta
 
Back
Top