HTML and CSS Reference
In-Depth Information
page. Online spreadsheets, security updates, word processors, patches, and timers are
examples of such components. The plug-ins we describe here are ActiveX controls and can
be downloaded from vendor sites on the Internet. You can add ActiveX controls to your
Web pages by using the standard HTML <object> tag. The <object> tag takes a set of param-
eters that specify which data the control should use and defines its appearance and behav-
ior. For details, see the Active X Web page, Figure 10.13 ( http://msdn.microsoft.com ).
Figure 10.13 ActiveX Web page.
EXAMPLE 10.5
<html>
<body>
<!--This file works with both Internet Explorer and Firefox -->
<h2>Flash swf file As Object</h2>
1
<object
width="250" height="100"
2
classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
3
codebase="http://fpdownload.macromedia.com/pub/
shockwave/cabs/flash/swflash.cab#version=8,0,0,0" >
4
<param name="SRC" value="Spring.swf">
5
<embed src="Spring.swf"></embed>
6
</object>
</body>
<!--http://ptgmedia.pearsoncmg.coml/images/0201716143/
files/files.htm -->
</html>
Search WWH ::




Custom Search