Click to See Complete Forum and Search --> : how to add multimedia appl to webpage


srimca
01-23-2003, 11:31 PM
how to add a flash or any multimedia application to a webpage

LAwebTek
01-23-2003, 11:43 PM
Flash is inserted like this:

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="" height="">
<param name="movie" value="your_file.swf">
<param name="quality" value="high">
<embed src="your_file.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="" height=""></embed></object>

khalidali63
01-23-2003, 11:48 PM
You can add a Java applet using the following syntax

<APPLET CODE=appletClassName.class WIDTH=256 HEIGHT=256 NAME="myApplet">
<PARAM NAME="param1" VALUE="param1">
<PARAM NAME="param2" VALUE="param2">
</APPLET>

srimca
01-24-2003, 12:01 AM
i want to display the applet or the multimedia application when the webpage is loaded.