flash video and asp.net

R

Rafael

how i can get some components or anybody knows a way to play flash files and
more using asp.net

Sincerely,


Rafael
 
S

Scott M.

AFAIK, you just use the <OBJECT> tag to place the .swf files where you need
them in the page, no programming necessary.
 
G

Guest

Hello Rafael,

Buy the $10 epicSoft Flash control. It will be useful if you know anything
at all about working with ASP.NET pages, and if you use the design-time
surface of the VS.NET 2005 designer.

If you do not really do any programming and/or you don't use VS.NET, then
just implement your Flash instances using the usual ways. The
smartest/cleanest/best abstracted way to do this is to download the
JavsScript-based SWFObject, which gets around the Eolas nonsense and a bunch
of other related problems. See here:
http://blog.deconcept.com/swfobject/

Happy Flashing,
Ken Fine
http://ideapod.com
 
S

Scott M.

Why bother with JavaScript, unless you need to manage flash objects
dynamically? If not, just add the following code and copy/paste/edit!

<OBJECT title="YourTitleHere"
classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" id="flash1"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0"
border="0" width="720" height="48" >
<PARAM name="movie" value="PathToSWFHere">
<PARAM name="quality" value="High">
<PARAM name="wmode" value="transparent">
<PARAM name="menu" value="false">
<EMBED src="PathToSWFHere"
pluginspage="http://www.macromedia.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"
type="application/x-shockwave-flash"
name="obj2" width="720" height="48"
quality="High" wmode="transparent" menu="false">
</OBJECT>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top