Groups | Blog | Home
all groups > asp.net > march 2007 >

asp.net : flash video and asp.net


Rafael
3/16/2007 7:33:48 PM
how i can get some components or anybody knows a way to play flash files and
more using asp.net

Sincerely,


Rafael

Scott M.
3/16/2007 8:26:57 PM
AFAIK, you just use the <OBJECT> tag to place the .swf files where you need
them in the page, no programming necessary.


[quoted text, click to view]

kenfine NO[at]SPAM nospam.nospam
3/16/2007 9:50:14 PM
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


[quoted text, click to view]

Scott M.
3/17/2007 12:56:21 PM
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>



[quoted text, click to view]

Peter Bromberg [C# MVP]
3/17/2007 8:10:03 PM
MVP Steve Orr has some nice stuff that you can use with Flash:
http://steveorr.net/articles/Flasher.aspx
Peter
--
Site: http://www.eggheadcafe.com
UnBlog: http://petesbloggerama.blogspot.com
Short urls & more: http://ittyurl.net




[quoted text, click to view]
fy4.net NO[at]SPAM gmail.com
3/18/2007 1:30:43 AM
AddThis Social Bookmark Button