Some of these parameters and others can be specified when
the player is embedded in an (X)HTML page. The following code is a classical template used to embed
a movie in a page:
< object classid=???clsid:D27CDB6E-AE6D-11cf-96B8-444553540000???
id=???flashmovieid??? width=???640??? height=???480???
codebase=???http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab??? >
< param name=???movie??? value=???sample.swf??? / >
< param name=???quality??? value=???high??? / >
< param name=???bgcolor??? value=???#ffffff??? / >
< param name=???allowScriptAccess??? value=???sameDomain??? / >
< embed src=???sample.swf??? quality=???high??? bgcolor=???#ffffff???
width=???640??? height=???480??? name=???flashmovieid??? align=???middle???
play=???true???
loop=???false???
quality=???high???
allowScriptAccess=???sameDomain???
type=???application/x-shockwave-flash???
pluginspage=???http://www.adobe.com/go/getflashplayer??? >
< /embed >
< /object >
The code uses the tag object to embed the player; a browser that does not recognize this element will
try to use the included embed .
Pages:
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624