DOM OBJECT and EMBED syntax

황제낙엽 2011.03.02 16:27 조회 수 : 189

sitelink1 http://kb2.adobe.com/cps/415/tn_4150.html 
sitelink2  
sitelink3 http://1 
sitelink4 http://ko 
extra_vars5  
extra_vars6 sitelink1 

Introduction

An HTML page is required to correctly display a Macromedia Flash movie in a browser. This HTML page must contain tags that reference the actual Macromedia Flash movie file to be opened and played. These tags are the OBJECT and EMBED tags. The OBJECT tag is used by Internet Explorer on Windows and the EMBED is used by Netscape Navigator (Macintosh and Windows) and Internet Explorer (Macintosh) to direct the browser to load the Macromedia Flash Player. Internet Explorer on Windows uses an ActiveX control to play Macromedia Flash content while all other browser and platform combinations use the Netscape plugin technology to play Macromedia Flash content. This explains the need for two tags.

Note: Hand coding HTML pages with OBJECT and EMBED tags is not necessary when using Macromedia Flash 4 or later. The Publish feature present in those versions of Macromedia Flash will automatically create an HTML document that contains the required HTML tags for browsers to access a Flash movie on the web. There are also several different HTML publishing templates to choose from. To use the Publish feature choose File > Publish Settings. For more information on using the feature see the Using Flash manual or online help.

Also note: Dreamweaver, Macromedia's HTML authoring tool, can easily embed a SWF movie into an HTML document. Dreamweaver also provides more control over layout and design of the page that contains the Macromedia Flash movie than the Publish feature in Flash. For more information on Dreamweaver or to download a free trial version visit the Dreamweaver product page.

Adding <OBJECT> and <EMBED> tags manually

It's simple to create the tags required to display a Flash movie in a browser.

To add OBJECT and EMBED tags manually:

  1. Copy the HTML code below and paste it into your HTML.
    <OBJECT 
    	classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" 
    	codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" 
    	WIDTH="550" 
    	HEIGHT="400" 
    	id="myMovieName">
    
      <PARAM NAME=movie VALUE="myFlashMovie.swf">
      <PARAM NAME=quality VALUE=high>
      <PARAM NAME=bgcolor VALUE=#FFFFFF>
    
      <EMBED 
    	  href="/support/flash/ts/documents/myFlashMovie.swf" quality=high 
    	  bgcolor=#FFFFFF 
    	  WIDTH="550" 
    	  HEIGHT="400" 
    	  NAME="myMovieName" 
    	  ALIGN="" 
    	  TYPE="application/x-shockwave-flash" 
    	  PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer">
      </EMBED>
    </OBJECT> 
  2. Edit the attributes of the tags for the movie.
    • Change the HEIGHT and WIDTH parameters to match the height and width of the movie dimensions or use percentage values, if desired.
    • Change "moviename.swf" where it appears in the OBJECT and EMBED tags to the name of movie to be played.

Why use these all these HTML tags? What do they do?

The OBJECT tag is for Internet Explorer 3.0 or later on Windows 9x/2000/NT/ME/XP platforms or any browser that supports the use of the Flash ActiveX control. The "classid" must appear exactly as it does in this example. The "codebase" attribute must also appear exactly as it does in this example; it tells the browser where to find Flash Player for automatic download. Internet Explorer 3.0 or later on Windows 9x/2000/NT/ME/XP will prompt the user with a dialog asking if they would like to auto-install the Flash Player if it's not already installed. This process can occur without the user having to restart the browser.

The EMBED tag is for Netscape Navigator 2.0 or later, or browsers that support the use of the Netscape-compatible plugin version of Flash Player. The "pluginspage" attribute tells the browser where to direct the user to find Flash Player for download if the Player is not already installed. The user would then need to download and run the installer and restart their browser.

To ensure that the most browsers will play your Flash Player movies, you should place the EMBED tag nested within the OBJECT tag as shown in the above example. ActiveX-enabled browsers will"ignore" the EMBED tag inside the OBJECT tag. Netscape and Microsoft browsers using the Flash Plugin will not recognize the OBJECT tag and will read only the EMBED tag.

Note: Some visual HTML editors such as Dreamweaver support the insertion of ActiveX objects or Netscape plugin content. Except when using Dreamweaver, it may be necessary to interpret the HTML code above to determine what to enter and where into your editor's dialog box or configuration prompts. You may also have to edit the HTML source code directly to achieve the nested OBJECT/EMBED tag structure described above. Although some editors allow you to preview the content after you've placed it, test your pages in Internet Explorer or Netscape Navigator to see them as your users will when they are downloaded. Flash 4, Flash 5, and Flash MX users can easily obtain the correct code by using Flash's Publish feature, and opening this Flash-created HTML page in an HTML editor.

This code is the minimum required HTML to provide Flash Player content in your web pages. There are other attributes that you can use in your OBJECT and EMBED tags to help control your movie. To learn more about these review Flash OBJECT and EMBED tag attributes (TechNote 12701).

번호 제목 글쓴이 날짜 조회 수
28 InternetExplorer 의 알림 표시줄에 대한 정보 및 우회 방법 file 황제낙엽 2011.05.11 225
27 Cross Browser DHTML Modal Dialogs For Web Apps 황제낙엽 2011.05.11 171
26 Windows XP 서비스 팩 2를 위한 웹 사이트 미세 조정 황제낙엽 2011.05.11 199
25 What’s wrong with extending the DOM 황제낙엽 2011.03.28 2245
24 [MSDN] Document Object Model Prototypes (IE8) 황제낙엽 2011.03.24 847
23 Flash와 Wmode [Object element] 황제낙엽 2011.03.10 85
» OBJECT and EMBED syntax 황제낙엽 2011.03.02 189
21 Flash OBJECT and EMBED tag attributes 황제낙엽 2011.03.02 139
20 Benchmark - W3C DOM vs. innerHTML 황제낙엽 2011.02.23 85
19 DOM Node handling 실행속도 (DOM Core vs innerHTML) 황제낙엽 2011.02.23 81
18 innerHTML의 속도가 만족스럽지 않을 때 황제낙엽 2011.02.23 94
17 Embed의 주요 속성 황제낙엽 2011.02.14 171
16 Object의 주요 속성 황제낙엽 2011.02.14 337
15 웹표준으로 플래시(Flash) 출력 하기 황제낙엽 2011.02.14 100
14 Embed 를 제거하여 XHTML 표준 따라가기 황제낙엽 2011.02.14 106
13 웹표준을 지키기 위한 노력 Firefox의 HTML Validator file 황제낙엽 2011.02.10 116
12 DOCTYPE과 DTD 그리고 Quirks Mode 황제낙엽 2011.02.10 251
11 웹 표준 개발자의 IE8 고려사항(quirk) file 황제낙엽 2010.10.25 131
10 W3C CSS validator installation file 황제낙엽 2010.08.17 160
9 사이즈가 조절되는 Background 이미지 - 개선판 file 황제낙엽 2009.06.28 86