<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>ZoneArtCSS &#124; Desarrollo Web, Diseño de páginas Web, Aplicaciones Móviles, Notas de Tecnología &#187; embed</title>
	<atom:link href="http://www.zoneartcss.com/tag/embed/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.zoneartcss.com</link>
	<description>Tips de Diseño y Desarrollo Web</description>
	<lastBuildDate>Wed, 26 Oct 2011 18:31:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Parámetros HTML &#8211; Flash en tu Web</title>
		<link>http://www.zoneartcss.com/tips/parametros-html-flash-en-tu-web/</link>
		<comments>http://www.zoneartcss.com/tips/parametros-html-flash-en-tu-web/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 20:28:46 +0000</pubDate>
		<dc:creator>miguelortega</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[embed]]></category>
		<category><![CDATA[flash en mi web]]></category>
		<category><![CDATA[flash en tu web]]></category>
		<category><![CDATA[Html]]></category>
		<category><![CDATA[object]]></category>
		<category><![CDATA[parametros html]]></category>
		<category><![CDATA[propiedades flash]]></category>
		<category><![CDATA[Transparent]]></category>
		<category><![CDATA[Wmode]]></category>
		<category><![CDATA[z-index flash]]></category>

		<guid isPermaLink="false">http://www.zoneartcss.com/?p=664</guid>
		<description><![CDATA[Parámetros y opciones Flash Se que aveces es muy, pero muy fácil insertar un swf en tu pagina web, con dar unos cuantos click&#8217;s en tu editor de dreamweaver. Pero me he encontrado con muchas paginas que cuanto utilizan un lightbox por ejemplo me doy cuenta que el objeto en flash se sobrepone al efecto y en varios lados he visto este error, que bien con un z-index podriamos arreglar&#8230; pero necesitamos que el elemento [...]]]></description>
			<content:encoded><![CDATA[<div id=HOTWordsTxt name=HOTWordsTxt><p style="text-align: center;"><img class="aligncenter" src="http://zoneartcss.com/wp-content/flash.jpg" alt="Flash en tu Web" width="500" height="130" /></p>
<h4 style="text-align: center;"><span style="color: #ff9900;">Parámetros y opciones Flash</span></h4>
<p><span id="more-664"></span><br />
Se que aveces es muy, pero muy fácil insertar un <strong>swf</strong> en tu pagina web, con dar unos cuantos click&#8217;s en tu editor de <strong>dreamweaver</strong>. Pero me he encontrado con muchas paginas que cuanto utilizan un <strong>lightbox</strong> por ejemplo me doy cuenta que el objeto en flash se sobrepone al efecto y en varios lados he visto este error, que bien con un <strong>z-index</strong> podriamos arreglar&#8230; pero necesitamos que el elemento <strong>swf</strong> tenga el siguiente parametro en su etiqueta &#8220;<strong>object</strong>&#8221; para ie y el &#8220;<strong>embed</strong>&#8221; para los navegadores buenos&#8230;</p>
<h4 style="text-align: center;"><span style="color: #ff9900;">Corregir el z-index del flash en el object</span></h4>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="html" style="font-family:monospace;">&lt;object&gt;&lt;param name=&quot;WMode&quot; value=&quot;Transparent&quot;&gt;&lt;/object&gt;</pre></td></tr></table></div>

<h4 style="text-align: center;"><span style="color: #ff9900;">Corregir el z-index del flash en el embed</span></h4>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="html" style="font-family:monospace;">&lt;embed WMode=&quot;Transparent&quot;&gt;&lt;/embed&gt;</pre></td></tr></table></div>

<p>Les dejo un ejemplo de codigo para insertar el flash con los parametros adecuados para que funcione correctamente.</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
</pre></td><td class="code"><pre class="html" style="font-family:monospace;">&lt;object classid=&quot;clsid:D27CDB6E-AE6D-11cf-96B8-444553540000&quot; codebase=&quot;http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0&quot; width=&quot;408&quot; height=&quot;240&quot; hspace=&quot;0&quot; vspace=&quot;0&quot;&gt;
        &lt;param name=&quot;movie&quot; value=&quot;topbar.swf&quot;&gt;
        &lt;param name=&quot;quality&quot; value=&quot;High&quot;&gt;
        &lt;param name=&quot;_cx&quot; value=&quot;5080&quot;&gt;
        &lt;param name=&quot;_cy&quot; value=&quot;5080&quot;&gt;
        &lt;param name=&quot;src&quot; value=&quot;topbar.swf&quot;&gt;
        &lt;param name=&quot;WMode&quot; value=&quot;Transparent&quot;&gt;
        &lt;param name=&quot;Play&quot; value=&quot;true&quot;&gt;
        &lt;param name=&quot;Loop&quot; value=&quot;true&quot;&gt;
        &lt;param name=&quot;Menu&quot; value=&quot;true&quot;&gt;
        &lt;param name=&quot;Scale&quot; value=&quot;ShowAll&quot;&gt;
        &lt;param name=&quot;DeviceFont&quot; value=&quot;false&quot;&gt;
        &lt;param name=&quot;EmbedMovie&quot; value=&quot;false&quot;&gt;
        &lt;param name=&quot;SeamlessTabbing&quot; value=&quot;true&quot;&gt;
        &lt;param name=&quot;Profile&quot; value=&quot;false&quot;&gt;
        &lt;param name=&quot;ProfilePort&quot; value=&quot;0&quot;&gt;
        &lt;param name=&quot;AllowNetworking&quot; value=&quot;all&quot;&gt;
        &lt;param name=&quot;AllowFullScreen&quot; value=&quot;false&quot;&gt;
        &lt;embed src=&quot;topbar.swf&quot; width=&quot;408&quot; height=&quot;240&quot; hspace=&quot;0&quot; vspace=&quot;0&quot; quality=&quot;High&quot; pluginspage=&quot;http://www.macromedia.com/go/getflashplayer&quot; type=&quot;application/x-shockwave-flash&quot; WMode=&quot;Transparent&quot; Play=&quot;true&quot; Loop=&quot;true&quot; Menu=&quot;true&quot; Scale=&quot;ShowAll&quot; DeviceFont=&quot;false&quot; EmbedMovie=&quot;false&quot; SeamlessTabbing=&quot;true&quot; Profile=&quot;false&quot; ProfilePort=&quot;0&quot; AllowNetworking=&quot;all&quot; AllowFullScreen=&quot;false&quot;&gt;&lt;/embed&gt;
&lt;/object&gt;</pre></td></tr></table></div>

<p>Recuerda poner siempre el object y embed por la cuestion de los navegadores.</p>
<p>Saludos.</p>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.zoneartcss.com/tips/parametros-html-flash-en-tu-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

