Incrustaciones

Este etiqueta es reconocido por Netscape Navigator desde la version 1.1

No soportado en HTM5

El comnado <EMBED> permite poner documentos directamente en la pagina HTML, justamente como la capacidad OLE de Windows.

La sintaxis es: <EMBED SRC="images/embed.bmp">

Tu puedes incrustar cualquier tipo de documento con este etiqueta pero el cliente tendra que tener instalada en su maquina la aplicacion correspondiente.

Si un tamaño es especificado (width y height), El objeto se reescalara para entrar en dicha ventana. Por ejemplo es el caso de una imagen tipo BMP seria:

<EMBED SRC=imagen.bmp WIDTH=250 HEIGHT=50>

El objeto incrustado podra ser activado con un doble clic y aparecera la aplicacion asociada (Paint Brush) en la ventana de 50 por 250 y ya estaras lista a editarla.

Netscape Plug-ins:
Con Netscapes un objeto incrustado podria hacer un llamado a un plug-ins en lugar de una aplicacion externa al procesar la etiqueta <EMBED>. Esencialmente los plug-ins son modulos de codigo dinamico asociados a un tipo de dato que el Netscape no soporta de forma nativa.

Plug-ins can have one of three modes of operation. They can be embedded, full-screen or hidden.

An embedded plug-in is a part of a larger HTML document, where the plug-in is to be visible as a rectangular sub-part of an HTML page. This is similar to an embedded GIF or JPG image, or an AVI video (see In-Line video) today. Indeed, an example of such a plug-in could be an AVI video player, where the video is played in a viewing rectangle in the HTML document and can be made to respond to user actions. (An example of an AVI playing plug-in is currently available as beta code from the Netscape web site - http://home. netscape.com)

A full-screen plug-in would be the viewer for a particular data type that was not part of an HTML document. In this mode, a plug-in will completely fill the inner frame of a Netscape window with its representation of some data type. An example of this type of plug-in would be an Adobe Acrobat viewer to view .PDF (portable document format)

A hidden plug-in is one that needs no user visible elements. An example of this might be a MIDI player, or a decompression engine.

At the time of writing, only a few plug-in modules had been released for Netscape. Paper Software Inc. released WebFX, a VRML plug-in for Netscape 2.0. This plug-in uses the <EMBED> element, together with the BORDER, ALIGN, WIDTH, HEIGHT y SRC attributes, allowing the embedding of VRML 'world' objects into HTML documents.

ALIGN soporta los valores left o right.

BORDER sets the border width to be displayed, defaulting with no border.

WIDTH y HEIGHT funcionan de forma similar en la etiqueta <IMG>, excepto que que si son usados separadamente, el objeto VRML sera escalado de forma uniforme de acuerdo al valor dado.

Es posible crear pantallas tipo 'post box' en un mundo VRML. Simplemente usa <EMBED SRC="filename.wrl"> y el objeto se presentara en una pequeña ventana de 50x50 pixels. Para emplear la pantalla completa es necesario incluir el objeto en un enlace <A HREF=...>

Para mas informaciĆ³n pobre los plug-in visita el sitio de Netscape.