<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Un Vicio Más</title>
		<link>https://file-sharing.clan.su/</link>
		<description>FORO - www.unViciomas.com</description>
		<lastBuildDate>Wed, 07 Aug 2013 04:43:48 GMT</lastBuildDate>
		<generator>uCoz Web-Service</generator>
		<atom:link href="https://file-sharing.clan.su/forum/rss" rel="self" type="application/rss+xml" />
		
		<item>
			<title>¿Como sacar barra de arriba del Blogger?</title>
			<link>https://file-sharing.clan.su/forum/69-2403-1</link>
			<pubDate>Wed, 07 Aug 2013 04:43:48 GMT</pubDate>
			<description>Foro: &lt;a href=&quot;https://file-sharing.clan.su/forum/69&quot;&gt;T. Para Internet o Webs&lt;/a&gt;&lt;br /&gt;Autor del tema: unViciomás&lt;br /&gt;Ultimo mensaje ha sido publicado por : unViciomás&lt;br /&gt;Número de respuestas: 0</description>
			<content:encoded>&lt;span style=&quot;font-size:15pt;&quot;&gt;&lt;div align=&quot;center&quot;&gt;¿Como sacar barra de arriba del Blogger?&lt;/div&gt;&lt;/span&gt;&lt;span style=&quot;font-size:11pt;&quot;&gt;Vamos a &quot;&lt;b&gt;Diseño&lt;/b&gt;&quot;, de ahi a &quot;&lt;b&gt;Edición de HTML&lt;/b&gt;&quot;, y colocamos el código que aparece a continuación entre &lt;b&gt;&lt;head&gt;&lt;/b&gt; y&lt;b&gt;&lt;/head&gt;&lt;/b&gt;&lt;/span&gt; &lt;br /&gt;&lt;br /&gt; &lt;b&gt;&lt;span style=&quot;font-size:12pt;&quot;&gt;Codigo:&lt;/span&gt;&lt;/b&gt; &lt;br /&gt;&lt;br /&gt; &lt;!--uzcode--&gt;&lt;div class=&quot;bbCodeBlock&quot;&gt;&lt;div class=&quot;bbCodeName&quot; style=&quot;padding-left:5px;font-weight:bold;font-size:7pt&quot;&gt;Código &lt;/div&gt;&lt;div class=&quot;codeMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzc--&gt;&lt;style type=&quot;text/css&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; #navbar-iframe {&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; height:0px;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; visibility:hidden;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; display:none;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; }&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; &lt;/style&gt;&lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt;</content:encoded>
			<category>T. Para Internet o Webs</category>
			<dc:creator>unViciomás</dc:creator>
			<guid>https://file-sharing.clan.su/forum/69-2403-1</guid>
		</item>
		<item>
			<title>[Código Javascript] Mostrar/Ocultar Texto al hacer clic</title>
			<link>https://file-sharing.clan.su/forum/69-2390-1</link>
			<pubDate>Fri, 23 Nov 2012 22:29:29 GMT</pubDate>
			<description>Foro: &lt;a href=&quot;https://file-sharing.clan.su/forum/69&quot;&gt;T. Para Internet o Webs&lt;/a&gt;&lt;br /&gt;Autor del tema: unViciomás&lt;br /&gt;Ultimo mensaje ha sido publicado por : unViciomás&lt;br /&gt;Número de respuestas: 0</description>
			<content:encoded>&lt;div align=&quot;center&quot;&gt;&lt;span style=&quot;font-size:21pt;&quot;&gt;&lt;b&gt;[Código Javascript] Mostrar/Ocultar Texto al hacer clic&lt;/b&gt;&lt;/span&gt; &lt;br /&gt;&lt;br /&gt; Hola, les traigo un sencillo código, que al apretar mostrar aparece el texto y al apretar ocultar desaparece el texto, el código: &lt;br /&gt;&lt;br /&gt; &lt;!--uzquote--&gt;&lt;div class=&quot;bbQuoteBlock&quot;&gt;&lt;div class=&quot;bbQuoteName&quot; style=&quot;padding-left:5px;font-size:7pt&quot;&gt;&lt;b&gt;Quote&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;quoteMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzq--&gt;&lt;span style=&quot;color:purple&quot;&gt;&lt;!--- Código ---&gt;&lt;/span&gt; &lt;br /&gt;&lt;br /&gt; &lt;b&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;/b&gt; &lt;br /&gt; OCULTO=&quot;none&quot;; &lt;br /&gt; VISIBLE=&quot;block&quot;; &lt;br /&gt; function mostrar1(blo) { &lt;br /&gt; document.getElementById(blo).style.display=VISIBLE; &lt;br /&gt; document.getElementById(&apos;ver_off1&apos;).style.display=VISIBLE; &lt;br /&gt; document.getElementById(&apos;ver_on1&apos;).style.display=OCULTO; &lt;br /&gt; } &lt;br /&gt; function ocultar1(blo) { &lt;br /&gt; document.getElementById(blo).style.display=OCULTO; &lt;br /&gt; document.getElementById(&apos;ver_off1&apos;).style.display=OCULTO; &lt;br /&gt; document.getElementById(&apos;ver_on1&apos;).style.display=VISIBLE; &lt;br /&gt; } &lt;br /&gt; &lt;b&gt;&lt;/script&gt; &lt;/b&gt; &lt;br /&gt;&lt;br /&gt; &lt;div id=&quot;bloque1&quot; style=&quot;display: none;&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;&lt;span style=&quot;color:blue&quot;&gt;&lt;b&gt;Texto que aparecerá al hacer click&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt; &lt;br /&gt;&lt;br /&gt; &lt;div id=&quot;ver_on1&quot; style=&quot;display: block;&quot;&gt;&lt;a onclick=&quot;mostrar1(&apos;bloque1&apos;)&quot; href=&quot;#&quot;&gt;&lt;span style=&quot;color:red&quot;&gt;&lt;b&gt;Mostrar&lt;/b&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt; &lt;br /&gt; &lt;div id=&quot;ver_off1&quot; style=&quot;display: none;&quot;&gt;&lt;a onclick=&quot;ocultar1(&apos;bloque1&apos;)&quot; href=&quot;#&quot;&gt;&lt;span style=&quot;color:red&quot;&gt;&lt;b&gt;No Mostrar&lt;/b&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt; &lt;br /&gt;&lt;br /&gt; &lt;span style=&quot;color:purple&quot;&gt;&lt;!--- /Código ---&gt;&lt;/span&gt;&lt;!--/uzq--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzquote--&gt;&lt;/div&gt;</content:encoded>
			<category>T. Para Internet o Webs</category>
			<dc:creator>unViciomás</dc:creator>
			<guid>https://file-sharing.clan.su/forum/69-2390-1</guid>
		</item>
		<item>
			<title>Elemento hr, Aprender HTML</title>
			<link>https://file-sharing.clan.su/forum/69-2351-1</link>
			<pubDate>Sun, 20 May 2012 15:54:03 GMT</pubDate>
			<description>Foro: &lt;a href=&quot;https://file-sharing.clan.su/forum/69&quot;&gt;T. Para Internet o Webs&lt;/a&gt;&lt;br /&gt;Autor del tema: unViciomás&lt;br /&gt;Ultimo mensaje ha sido publicado por : unViciomás&lt;br /&gt;Número de respuestas: 0</description>
			<content:encoded>&lt;div align=&quot;center&quot;&gt;&lt;span style=&quot;font-size:20pt;&quot;&gt;&lt;b&gt;Elemento hr, Aprender HTML&lt;/b&gt;&lt;/span&gt;&lt;/div&gt; &lt;br /&gt;&lt;br /&gt; &lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;P&gt;Líneas horizontales:&lt;/P&gt;&lt;/span&gt; &lt;br /&gt; &lt;!--uzcode--&gt;&lt;div class=&quot;bbCodeBlock&quot;&gt;&lt;div class=&quot;bbCodeName&quot; style=&quot;padding-left:5px;font-weight:bold;font-size:7pt&quot;&gt;Code&lt;/div&gt;&lt;div class=&quot;codeMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzc--&gt;&lt;HR&gt;&lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt; &lt;br /&gt; &lt;!--uzcode--&gt;&lt;div class=&quot;bbCodeBlock&quot;&gt;&lt;div class=&quot;bbCodeName&quot; style=&quot;padding-left:5px;font-weight:bold;font-size:7pt&quot;&gt;Code&lt;/div&gt;&lt;div class=&quot;codeMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzc--&gt;&lt;HR WIDTH=80%&gt;&lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt; &lt;br /&gt; &lt;!--uzcode--&gt;&lt;div class=&quot;bbCodeBlock&quot;&gt;&lt;div class=&quot;bbCodeName&quot; style=&quot;padding-left:5px;font-weight:bold;font-size:7pt&quot;&gt;Code&lt;/div&gt;&lt;div class=&quot;codeMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzc--&gt;&lt;HR NOSHADE&gt;&lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt; &lt;br /&gt; &lt;!--uzcode--&gt;&lt;div class=&quot;bbCodeBlock&quot;&gt;&lt;div class=&quot;bbCodeName&quot; style=&quot;padding-left:5px;font-weight:bold;font-size:7pt&quot;&gt;Code&lt;/div&gt;&lt;div class=&quot;codeMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzc--&gt;&lt;hr style=&quot;border-color: #ff0000;&quot; /&gt;&lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt; &lt;br /&gt; &lt;!--uzcode--&gt;&lt;div class=&quot;bbCodeBlock&quot;&gt;&lt;div class=&quot;bbCodeName&quot; style=&quot;padding-left:5px;font-weight:bold;font-size:7pt&quot;&gt;Code&lt;/div&gt;&lt;div class=&quot;codeMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzc--&gt;&lt;hr style=&quot;border-color: #0000ff; WIDTH: 50%; height: 20%;&quot; /&gt;&lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt; &lt;br /&gt;&lt;br /&gt; &lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;P&gt;ASÍ SE VE:&lt;/P&gt;&lt;/span&gt; &lt;br /&gt; &lt;HR&gt; &lt;br /&gt;&lt;br /&gt; &lt;HR WIDTH=80%&gt; &lt;br /&gt;&lt;br /&gt; &lt;HR NOSHADE&gt; &lt;br /&gt;&lt;br /&gt; &lt;hr style=&quot;border-color: #ff0000;&quot; /&gt; &lt;br /&gt;&lt;br /&gt; &lt;hr style=&quot;border-color: #0000ff; WIDTH: 50%; height: 20%;&quot; /&gt;</content:encoded>
			<category>T. Para Internet o Webs</category>
			<dc:creator>unViciomás</dc:creator>
			<guid>https://file-sharing.clan.su/forum/69-2351-1</guid>
		</item>
		<item>
			<title>Background Position (Posición del fondo)</title>
			<link>https://file-sharing.clan.su/forum/69-2128-1</link>
			<pubDate>Wed, 28 Dec 2011 08:08:09 GMT</pubDate>
			<description>Foro: &lt;a href=&quot;https://file-sharing.clan.su/forum/69&quot;&gt;T. Para Internet o Webs&lt;/a&gt;&lt;br /&gt;Autor del tema: unViciomás&lt;br /&gt;Ultimo mensaje ha sido publicado por : unViciomás&lt;br /&gt;Número de respuestas: 0</description>
			<content:encoded>&lt;div align=&quot;center&quot;&gt;&lt;span style=&quot;font-size:20pt;&quot;&gt;&lt;b&gt;Background Position (Posición del fondo)&lt;/b&gt;&lt;/span&gt;&lt;/div&gt; &lt;br /&gt;&lt;br /&gt; La propiedad &lt;b&gt;background-position&lt;/b&gt; da la posición inicial de la background image (&lt;b&gt;imagen de fondo&lt;/b&gt;) especificada. Esta propiedad solo puede aplicarse a elementos de nivel bloque y a elementos reemplazados. (Un elemento reemplazado es aquel del que solo se conocen las dimensiones intrínsecas; los elementos reemplazados HTML incluyen &lt;b&gt;IMG, INPUT, TEXTAREA, SELECT, y OBJECT&lt;/b&gt;.) &lt;br /&gt;&lt;br /&gt; &lt;b&gt;La forma más sencilla de asignar una ubicación de fondo es con palabras clave:&lt;/b&gt; &lt;br /&gt;&lt;br /&gt; • Palabras clave horizontales (&lt;b&gt;&lt;span style=&quot;color:red&quot;&gt;left&lt;/span&gt;, &lt;span style=&quot;color:red&quot;&gt;center&lt;/span&gt;, &lt;span style=&quot;color:red&quot;&gt;right&lt;/span&gt;&lt;/b&gt;) &lt;br /&gt; • Palabras clave horizontales verticales (&lt;b&gt;&lt;span style=&quot;color:blue&quot;&gt;top&lt;/span&gt;, &lt;span style=&quot;color:blue&quot;&gt;center&lt;/span&gt;, &lt;span style=&quot;color:blue&quot;&gt;bottom&lt;/span&gt;&lt;/b&gt;) &lt;br /&gt;&lt;br /&gt; &lt;!--uzquote--&gt;&lt;div class=&quot;bbQuoteBlock&quot;&gt;&lt;div class=&quot;bbQuoteName&quot; style=&quot;padding-left:5px;font-size:7pt&quot;&gt;&lt;b&gt;Quote&lt;/b&gt; (&lt;span class=&quot;qName&quot;&gt;&lt;!--qn--&gt;INFO&lt;!--/qn--&gt;&lt;/span&gt;)&lt;/div&gt;&lt;div class=&quot;quoteMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzq--&gt;El atributo &lt;b&gt;align&lt;/b&gt; que puede tomar los siguientes valores: &lt;b&gt;left, right, top, texttop, middle, absmiddle, bottom, absbottom, baseline&lt;/b&gt;.&lt;!--/uzq--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzquote--&gt; &lt;br /&gt;&lt;br /&gt; &lt;b&gt;HTML&lt;/b&gt; &lt;br /&gt; &lt;!--uzquote--&gt;&lt;div class=&quot;bbQuoteBlock&quot;&gt;&lt;div class=&quot;bbQuoteName&quot; style=&quot;padding-left:5px;font-size:7pt&quot;&gt;&lt;b&gt;Quote&lt;/b&gt; (&lt;span class=&quot;qName&quot;&gt;&lt;!--qn--&gt;HTML&lt;!--/qn--&gt;&lt;/span&gt;)&lt;/div&gt;&lt;div class=&quot;quoteMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzq--&gt;&lt;img src=&quot;imagen.jpg&quot; alt=&quot;Esto es una imagen&quot; &lt;b&gt;align=right&lt;/b&gt;&gt;&lt;!--/uzq--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzquote--&gt; &lt;br /&gt;&lt;br /&gt; &lt;b&gt;CSS&lt;/b&gt; &lt;br /&gt; &lt;!--uzquote--&gt;&lt;div class=&quot;bbQuoteBlock&quot;&gt;&lt;div class=&quot;bbQuoteName&quot; style=&quot;padding-left:5px;font-size:7pt&quot;&gt;&lt;b&gt;Quote&lt;/b&gt; (&lt;span class=&quot;qName&quot;&gt;&lt;!--qn--&gt;CSS&lt;!--/qn--&gt;&lt;/span&gt;)&lt;/div&gt;&lt;div class=&quot;quoteMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzq--&gt;.imagen { &lt;br /&gt; background-image: url(http://unviciomas.com/imagen.png); &lt;br /&gt; background-repeat: repeat-x; &lt;br /&gt; &lt;b&gt;background-position: bottom;&lt;/b&gt; &lt;br /&gt; padding:10 0px; &lt;br /&gt; }&lt;!--/uzq--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzquote--&gt; &lt;br /&gt;&lt;br /&gt; También pueden usarse porcentajes y longitudes para asignar la posición de la imagen de fondo. Los porcentajes son relativos al tamaño del elemento. Aunque se permiten longitudes, no se recomiendan debido a su inherente debilidad al tratar con diferentes resoluciones de pantalla. &lt;br /&gt;&lt;br /&gt; Al usar porcentajes o longitudes, la posición horizontal se especifica primero, seguida de la posición vertical. Un valor como 20% 65% especifica que la imagen se colocará 20% a la derecha y 65% abajo del elemento. Un valor como 5px 10px especifica que la esquina superior izquierda de la imagen se colocará 5 pixels a la derecha y 10 pixels abajo de la esquina superior izquierda del elemento. &lt;br /&gt;&lt;br /&gt; Si solo se da el valor horizontal, la posición vertical será 50%. Se permiten combinaciones de longitudes y porcentajes, ya que son posiciones negativas. Por ejemplo, 10% -2cm está permitido. Sin embargo, porcentajes y longitudes no pueden combinarse con palabras clave. &lt;br /&gt;&lt;br /&gt; &lt;b&gt;Las palabras clave son interpretadas como sigue;&lt;/b&gt; &lt;br /&gt;&lt;br /&gt; top left = left top = 0% 0% &lt;br /&gt; top = top center = center top = 50% 0% &lt;br /&gt; right top = top right = 100% 0% &lt;br /&gt; left = left center = center left = 0% 50% &lt;br /&gt; center = center center = 50% 50% &lt;br /&gt; right = right center = center right = 100% 50% &lt;br /&gt; bottom left = left bottom = 0% 100% &lt;br /&gt; bottom = bottom center = center bottom = 50% 100% &lt;br /&gt; bottom right = right bottom = 100% 100% &lt;br /&gt;&lt;br /&gt; &lt;b&gt;Si la imagen de fondo está fija en relación al lienzo, la imagen es colocada en relación al lienzo y no al elemento.&lt;/b&gt;</content:encoded>
			<category>T. Para Internet o Webs</category>
			<dc:creator>unViciomás</dc:creator>
			<guid>https://file-sharing.clan.su/forum/69-2128-1</guid>
		</item>
		<item>
			<title>Que Aparezca una ventana cuando se pasa el mouse</title>
			<link>https://file-sharing.clan.su/forum/69-2062-1</link>
			<pubDate>Tue, 13 Dec 2011 05:31:46 GMT</pubDate>
			<description>Foro: &lt;a href=&quot;https://file-sharing.clan.su/forum/69&quot;&gt;T. Para Internet o Webs&lt;/a&gt;&lt;br /&gt;Autor del tema: unViciomás&lt;br /&gt;Ultimo mensaje ha sido publicado por : unViciomás&lt;br /&gt;Número de respuestas: 0</description>
			<content:encoded>&lt;div align=&quot;center&quot;&gt;&lt;span style=&quot;font-size:19pt;&quot;&gt;&lt;b&gt;Que Aparezca una ventana cuando se pasa el mouse&lt;/b&gt;&lt;/span&gt;&lt;/div&gt; &lt;br /&gt;&lt;br /&gt; &lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;CODIGO CSS:&lt;/b&gt;&lt;/span&gt; &lt;br /&gt;&lt;br /&gt; &lt;!--uzquote--&gt;&lt;div class=&quot;bbQuoteBlock&quot;&gt;&lt;div class=&quot;bbQuoteName&quot; style=&quot;padding-left:5px;font-size:7pt&quot;&gt;&lt;b&gt;Quote&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;quoteMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzq--&gt;&lt;b&gt;&lt;style&gt; &lt;br /&gt; .originale&lt;/b&gt; {position: relative; z-index: 0} &lt;br /&gt; &lt;b&gt;.originale&lt;/b&gt; {width: 10px; left: 2px} &lt;br /&gt; &lt;b&gt;.originale&lt;/b&gt;:hover {background-color: transparent; z-index: 0} &lt;br /&gt; &lt;b&gt;.originale span&lt;/b&gt; {position: absolute; background-color: &lt;b&gt;#FFFFFF&lt;/b&gt;; padding: 5px; right: 0; display: none; border: 3px solid #000000; visibility: hidden; color: #000000; text-decoration: none; font-weight: bold} &lt;br /&gt; &lt;b&gt;.originale span&lt;/b&gt; img {border-width: 0; padding: 2px} &lt;br /&gt; &lt;b&gt;.originale&lt;/b&gt;:hover span {visibility: visible; top: 5px; display: block; width: &lt;b&gt;90px&lt;/b&gt;; left: &lt;b&gt;10px&lt;/b&gt;} &lt;br /&gt; &lt;b&gt;.originale span&lt;/b&gt;{ &lt;br /&gt; border: solid medium &lt;b&gt;#50616E&lt;/b&gt;; &lt;br /&gt; margin: -2px 0 0 0; &lt;br /&gt; border-radius:5px; &lt;br /&gt; } &lt;br /&gt; &lt;b&gt;.originale span&lt;/b&gt;:hover{ &lt;br /&gt; border: solid medium &lt;span style=&quot;color:blue&quot;&gt;&lt;b&gt;#00F&lt;/b&gt;&lt;/span&gt; &lt;br /&gt; } &lt;br /&gt; &lt;b&gt;&lt;/style&gt;&lt;/b&gt;&lt;!--/uzq--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzquote--&gt; &lt;br /&gt;&lt;br /&gt; &lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;CODIGO HTML:&lt;/b&gt;&lt;/span&gt; &lt;br /&gt;&lt;br /&gt; &lt;!--uzquote--&gt;&lt;div class=&quot;bbQuoteBlock&quot;&gt;&lt;div class=&quot;bbQuoteName&quot; style=&quot;padding-left:5px;font-size:7pt&quot;&gt;&lt;b&gt;Quote&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;quoteMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzq--&gt;&lt;div class=&quot;&lt;b&gt;originale&lt;/b&gt;&quot;&gt;&lt;img src=&quot;http://www.crea-si.com/image/flecha.gif&quot; alt=&quot;&quot; width:23px; height:23px;&gt;&lt;b&gt;&lt;span&gt;&lt;/b&gt;Hola Mundoo!&lt;b&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;!--/uzq--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzquote--&gt;</content:encoded>
			<category>T. Para Internet o Webs</category>
			<dc:creator>unViciomás</dc:creator>
			<guid>https://file-sharing.clan.su/forum/69-2062-1</guid>
		</item>
		<item>
			<title>Opacidad en Imagen con CSS</title>
			<link>https://file-sharing.clan.su/forum/69-2012-1</link>
			<pubDate>Fri, 25 Nov 2011 07:11:08 GMT</pubDate>
			<description>Foro: &lt;a href=&quot;https://file-sharing.clan.su/forum/69&quot;&gt;T. Para Internet o Webs&lt;/a&gt;&lt;br /&gt;Autor del tema: unViciomás&lt;br /&gt;Ultimo mensaje ha sido publicado por : unViciomás&lt;br /&gt;Número de respuestas: 0</description>
			<content:encoded>&lt;div align=&quot;center&quot;&gt;&lt;span style=&quot;font-size:19pt;&quot;&gt;&lt;b&gt;Opacidad en Imagen con CSS&lt;/b&gt;&lt;/span&gt;&lt;/div&gt; &lt;br /&gt;&lt;br /&gt; &lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;CÓDIGO CSS:&lt;/b&gt;&lt;/span&gt; &lt;br /&gt;&lt;br /&gt; &lt;!--uzquote--&gt;&lt;div class=&quot;bbQuoteBlock&quot;&gt;&lt;div class=&quot;bbQuoteName&quot; style=&quot;padding-left:5px;font-size:7pt&quot;&gt;&lt;b&gt;Quote&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;quoteMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzq--&gt;&lt;b&gt;&lt;style type=&apos;text/css&apos;&gt;&lt;/b&gt; &lt;br /&gt; #boton2 { &lt;br /&gt; margin: 0 auto; &lt;br /&gt; margin-bottom: 20px; &lt;br /&gt; padding: 0; &lt;br /&gt; text-align: center; &lt;br /&gt; } &lt;br /&gt; #boton2 a:hover img &lt;br /&gt; { &lt;br /&gt; &lt;span style=&quot;color:red&quot;&gt;&lt;b&gt;opacity: 1;&lt;/b&gt;&lt;/span&gt; &lt;br /&gt; } &lt;br /&gt; #boton2 a img &lt;br /&gt; { &lt;br /&gt; &lt;span style=&quot;color:red&quot;&gt;&lt;b&gt;opacity: 0.30;&lt;/b&gt;&lt;/span&gt; &lt;br /&gt; } &lt;br /&gt; &lt;b&gt;&lt;/style&gt;&lt;/b&gt;&lt;!--/uzq--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzquote--&gt; &lt;br /&gt;&lt;br /&gt; &lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;CÓDIGO HTML:&lt;/b&gt;&lt;/span&gt; &lt;br /&gt;&lt;br /&gt; &lt;!--uzquote--&gt;&lt;div class=&quot;bbQuoteBlock&quot;&gt;&lt;div class=&quot;bbQuoteName&quot; style=&quot;padding-left:5px;font-size:7pt&quot;&gt;&lt;b&gt;Quote&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;quoteMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzq--&gt;&lt;b&gt;&lt;div id=&apos;boton2&apos;&gt;&lt;/b&gt; &lt;br /&gt; &lt;a href=&apos;http://unviciomas.com&apos; target=&quot;_blank&quot;&gt; &lt;br /&gt; &lt;img border=&apos;0&apos; src=&apos;http://unviciomas.com/_ph/2/2/87402351.jpg&apos; title=&apos;www.unViciomas.com&apos;/&gt;&lt;/a&gt; &lt;br /&gt; &lt;b&gt;&lt;/div&gt;&lt;/b&gt;&lt;!--/uzq--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzquote--&gt; &lt;br /&gt;&lt;br /&gt; &lt;a class=&quot;link&quot; href=&quot;http://unviciomas.com/index/efecto_zoom_imagen/0-221#transp&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;&lt;span style=&quot;color:blue&quot;&gt;&lt;span style=&quot;font-size:19pt;&quot;&gt;&lt;b&gt;VER EJEMPLO&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;</content:encoded>
			<category>T. Para Internet o Webs</category>
			<dc:creator>unViciomás</dc:creator>
			<guid>https://file-sharing.clan.su/forum/69-2012-1</guid>
		</item>
		<item>
			<title>Efecto Zoom en Imagen con css y html</title>
			<link>https://file-sharing.clan.su/forum/69-2011-1</link>
			<pubDate>Fri, 25 Nov 2011 06:44:59 GMT</pubDate>
			<description>Foro: &lt;a href=&quot;https://file-sharing.clan.su/forum/69&quot;&gt;T. Para Internet o Webs&lt;/a&gt;&lt;br /&gt;Autor del tema: unViciomás&lt;br /&gt;Ultimo mensaje ha sido publicado por : unViciomás&lt;br /&gt;Número de respuestas: 0</description>
			<content:encoded>&lt;div align=&quot;center&quot;&gt;&lt;span style=&quot;font-size:19pt;&quot;&gt;&lt;b&gt;Efecto Zoom en Imagen con css y html&lt;/b&gt;&lt;/span&gt;&lt;/div&gt; &lt;br /&gt;&lt;br /&gt; &lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;CÓDIGO CSS:&lt;/b&gt;&lt;/span&gt; &lt;br /&gt;&lt;br /&gt; &lt;!--uzquote--&gt;&lt;div class=&quot;bbQuoteBlock&quot;&gt;&lt;div class=&quot;bbQuoteName&quot; style=&quot;padding-left:5px;font-size:7pt&quot;&gt;&lt;b&gt;Quote&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;quoteMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzq--&gt;&lt;b&gt;&lt;style type=&apos;text/css&apos;&gt;&lt;/b&gt; &lt;br /&gt; &lt;span style=&quot;color:blue&quot;&gt;#boton&lt;/span&gt; { &lt;br /&gt; margin: 0 auto; &lt;br /&gt; margin-bottom: 20px; &lt;br /&gt; padding: 0; &lt;br /&gt; text-align: center; &lt;br /&gt; } &lt;br /&gt; &lt;span style=&quot;color:blue&quot;&gt;#boton&lt;/span&gt; a:hover img &lt;br /&gt; { &lt;br /&gt; width: auto; &lt;br /&gt; height: auto; &lt;br /&gt; } &lt;br /&gt; &lt;span style=&quot;color:blue&quot;&gt;#boton&lt;/span&gt; a img &lt;br /&gt; { &lt;br /&gt; width: 250px; &lt;br /&gt; height: 250px; &lt;br /&gt; } &lt;br /&gt; &lt;b&gt;&lt;/style&gt;&lt;/b&gt;&lt;!--/uzq--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzquote--&gt; &lt;br /&gt;&lt;br /&gt; &lt;b&gt;CÓDIGO HTML:&lt;/b&gt; &lt;br /&gt;&lt;br /&gt; &lt;!--uzquote--&gt;&lt;div class=&quot;bbQuoteBlock&quot;&gt;&lt;div class=&quot;bbQuoteName&quot; style=&quot;padding-left:5px;font-size:7pt&quot;&gt;&lt;b&gt;Quote&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;quoteMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzq--&gt;&lt;b&gt;&lt;div id=&apos;boton&apos;&gt;&lt;/b&gt; &lt;br /&gt; &lt;a href=&apos;http://unviciomas.com&apos; target=&quot;_blank&quot;&gt; &lt;br /&gt; &lt;img border=&apos;0&apos; src=&apos;&lt;b&gt;http://unviciomas.com/_ph/2/2/87402351.jpg&lt;/b&gt;&apos; title=&apos;www.unViciomas.Com&apos;/&gt;&lt;/a&gt; &lt;br /&gt; &lt;b&gt;&lt;/div&gt;&lt;/b&gt;&lt;!--/uzq--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzquote--&gt; &lt;br /&gt;&lt;br /&gt; &lt;a class=&quot;link&quot; href=&quot;http://unviciomas.com/index/efecto_zoom_imagen/0-221&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;&lt;span style=&quot;font-size:16pt;&quot;&gt;&lt;b&gt;&lt;span style=&quot;color:blue&quot;&gt;VER EJEMPLO&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/a&gt;</content:encoded>
			<category>T. Para Internet o Webs</category>
			<dc:creator>unViciomás</dc:creator>
			<guid>https://file-sharing.clan.su/forum/69-2011-1</guid>
		</item>
		<item>
			<title>Efecto Zoom en el texto con css y html</title>
			<link>https://file-sharing.clan.su/forum/69-2001-1</link>
			<pubDate>Wed, 23 Nov 2011 08:58:45 GMT</pubDate>
			<description>Foro: &lt;a href=&quot;https://file-sharing.clan.su/forum/69&quot;&gt;T. Para Internet o Webs&lt;/a&gt;&lt;br /&gt;Autor del tema: unViciomás&lt;br /&gt;Ultimo mensaje ha sido publicado por : unViciomás&lt;br /&gt;Número de respuestas: 1</description>
			<content:encoded>&lt;div align=&quot;center&quot;&gt;&lt;span style=&quot;font-size:19pt;&quot;&gt;&lt;b&gt;Efecto Zoom en el texto con css y html&lt;/b&gt;&lt;/span&gt;&lt;/div&gt; &lt;br /&gt;&lt;br /&gt; &lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;CÓDIGO CSS:&lt;/b&gt;&lt;/span&gt; &lt;br /&gt;&lt;br /&gt; &lt;!--uzquote--&gt;&lt;div class=&quot;bbQuoteBlock&quot;&gt;&lt;div class=&quot;bbQuoteName&quot; style=&quot;padding-left:5px;font-size:7pt&quot;&gt;&lt;b&gt;Quote&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;quoteMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzq--&gt;&lt;b&gt;&lt;style type=&quot;text/css&quot;&gt;&lt;/b&gt; &lt;br /&gt; div.main-container{display:block;text-align:left;margin:0 0 1px}div.main-container h1,div.main-container h2,div.main-container h3,div.main-container h4,div.main-container h5,div.main-container h6{font-family:Artifika, Arial, Helvetica, sans-serif;font-weight:400;line-height:normal;margin:0 0 15px;padding:0}h1{font-size:30px}h2{font-size:28px}h3{font-size:26px}h4{font-size:24px}h5{font-size:22px}h6{font-size:18px}header{text-align:cent er;text-transform:uppercase}header h1{list-style:none;line-height:normal;margin:0;padding:0}header h1 a{font-family:&apos;ChunkFive Regular&apos;, Arial, Helvetica, sans-serif;font-size:75px;text-shadow:0 3px 3px #555;-webkit-transition:all 200ms linear;-moz-transition:all 200ms linear;-o-transition:all 200ms linear;transition:all 200ms linear;-webkit-transform:translateZ(0);-moz-transform:translateZ(0);-o-transform:translateZ(0);transform:translateZ(0)}header h1 a:hover{font-size:100px;-webkit-transform:scale(1.1+) translateZ(0);-moz-transform:scale(1.1) translateZ(0);-o-transform:scale(1.1) translateZ(0);transform:scale(1.1) translateZ(0)}header p{margin-top:-20px;font-size:20px} &lt;br /&gt; &lt;b&gt;&lt;/style&gt;&lt;/b&gt;&lt;!--/uzq--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzquote--&gt; &lt;br /&gt;&lt;br /&gt; &lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;CÓDIGO HTML:&lt;/b&gt;&lt;/span&gt; &lt;br /&gt;&lt;br /&gt; &lt;!--uzquote--&gt;&lt;div class=&quot;bbQuoteBlock&quot;&gt;&lt;div class=&quot;bbQuoteName&quot; style=&quot;padding-left:5px;font-size:7pt&quot;&gt;&lt;b&gt;Quote&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;quoteMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzq--&gt;&lt;b&gt;&lt;div class=&quot;main-container&quot;&gt;&lt;/b&gt; &lt;br /&gt; &lt;header&gt; &lt;br /&gt; &lt;h1&gt;&lt;a href=&quot;http://unviciomas.com&quot;&gt;&lt;span style=&quot;color:blue&quot;&gt;&lt;b&gt;UnViciomas .Com&lt;/b&gt;&lt;/span&gt;&lt;/a&gt;&lt;/h1&gt; &lt;br /&gt; &lt;p id=&quot;tagline&quot;&gt;&lt;strong&gt;Compartida, la vida es mas&lt;/strong&gt;&lt;/p&gt; &lt;br /&gt; &lt;/header&gt; &lt;br /&gt; &lt;b&gt;&lt;/div&gt;&lt;/b&gt;&lt;!--/uzq--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzquote--&gt;</content:encoded>
			<category>T. Para Internet o Webs</category>
			<dc:creator>unViciomás</dc:creator>
			<guid>https://file-sharing.clan.su/forum/69-2001-1</guid>
		</item>
		<item>
			<title>Mostrar imágenes aleatorias codigo HTML Javascript</title>
			<link>https://file-sharing.clan.su/forum/69-2000-1</link>
			<pubDate>Wed, 23 Nov 2011 07:39:37 GMT</pubDate>
			<description>Foro: &lt;a href=&quot;https://file-sharing.clan.su/forum/69&quot;&gt;T. Para Internet o Webs&lt;/a&gt;&lt;br /&gt;Autor del tema: unViciomás&lt;br /&gt;Ultimo mensaje ha sido publicado por : unViciomás&lt;br /&gt;Número de respuestas: 0</description>
			<content:encoded>&lt;div align=&quot;center&quot;&gt;&lt;span style=&quot;font-size:19pt;&quot;&gt;&lt;b&gt;Mostrar imágenes aleatorias codigo HTML Javascript&lt;/b&gt;&lt;/span&gt; &lt;br /&gt;&lt;br /&gt; Te interesa que cada vez que ingresen a tu sitio/web aparezca un a imagen aleatoria? Ok, lo unico que tienes que hacer es copiar el siguiente código javascript, y pegarlo en donde desees que aparezca la imagen. &lt;br /&gt;&lt;br /&gt; Así, cada vez que entras, ves una diferente (o no, si da la casualidad de que sale la misma, porque es aleatorio).&lt;/div&gt; &lt;br /&gt;&lt;br /&gt; &lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;CÓDIGO: &lt;/b&gt;&lt;/span&gt; &lt;br /&gt;&lt;br /&gt; &lt;!--uzquote--&gt;&lt;div class=&quot;bbQuoteBlock&quot;&gt;&lt;div class=&quot;bbQuoteName&quot; style=&quot;padding-left:5px;font-size:7pt&quot;&gt;&lt;b&gt;Quote&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;quoteMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzq--&gt;&lt;b&gt;&lt;script language=&quot;javascript&quot;&gt;&lt;/b&gt; &lt;br /&gt;&lt;br /&gt; function VecImagenes() &lt;br /&gt; { &lt;br /&gt; n=0; &lt;br /&gt; this[n++]=&quot;&lt;span style=&quot;color:blue&quot;&gt;http://fotolog.ucoz.com/_ph/4/2/521709582.jpg&lt;/span&gt;&quot;; &lt;br /&gt; this[n++]=&quot;&lt;span style=&quot;color:blue&quot;&gt;http://fotolog.ucoz.com/_ph/4/2/797174662.jpg&lt;/span&gt;&quot;; &lt;br /&gt; this[n++]=&quot;&lt;span style=&quot;color:blue&quot;&gt;http://fotolog.ucoz.com/_ph/4/2/109193380.jpg&lt;/span&gt;&quot;; &lt;br /&gt; this[n++]=&quot;&lt;span style=&quot;color:blue&quot;&gt;http://fotolog.ucoz.com/_ph/4/2/349057746.jpg&lt;/span&gt;&quot;; &lt;br /&gt; this[n++]=&quot;&lt;span style=&quot;color:blue&quot;&gt;http://fotolog.ucoz.com/_ph/4/2/7451558.png&lt;/span&gt;&quot;; &lt;br /&gt; this.N=n; &lt;br /&gt; } &lt;br /&gt; var Imagenes=new VecImagenes(); &lt;br /&gt; src= Imagenes[ Math.floor(Math.random() * Imagenes.N) ] ; &lt;br /&gt; document.write(&quot;&lt;img src=&quot;+src+&quot; align=right&gt;&quot;); &lt;br /&gt; &lt;b&gt;&lt;/script&gt;&lt;/b&gt;&lt;!--/uzq--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzquote--&gt; &lt;br /&gt;&lt;br /&gt; &lt;div align=&quot;center&quot;&gt;Por ultimo lo que te queda hacer es remplazar las direcciones de las imágenes que se encuentran con color azul, por las direcciones de las imágenes que quieres &quot;randomizar&quot;.&lt;/div&gt;</content:encoded>
			<category>T. Para Internet o Webs</category>
			<dc:creator>unViciomás</dc:creator>
			<guid>https://file-sharing.clan.su/forum/69-2000-1</guid>
		</item>
		<item>
			<title>Personaliza Google+ como quieras (Chrome)</title>
			<link>https://file-sharing.clan.su/forum/69-1931-1</link>
			<pubDate>Wed, 09 Nov 2011 15:59:11 GMT</pubDate>
			<description>Foro: &lt;a href=&quot;https://file-sharing.clan.su/forum/69&quot;&gt;T. Para Internet o Webs&lt;/a&gt;&lt;br /&gt;Autor del tema: unViciomás&lt;br /&gt;Ultimo mensaje ha sido publicado por : unViciomás&lt;br /&gt;Número de respuestas: 0</description>
			<content:encoded>&lt;div align=&quot;center&quot;&gt;&lt;span style=&quot;font-size:18pt;&quot;&gt;&lt;b&gt;Personaliza Google+ como quieras (Chrome)&lt;/b&gt;&lt;/span&gt;&lt;/div&gt; &lt;br /&gt;&lt;br /&gt; Desde cambiar colores de fondo y texto, hasta ocultar botones, la barra de notificaciones, modulos o poner fijos los sidebar, la extensión Google+ CSS para Chrome te permitira cambiar el diseño de Google+. &lt;br /&gt;&lt;br /&gt; Google+ CSS es una extensión para el navegador Chrome, que permite desde cambiar los colores y fondos, hasta fijar módulos, ocultar links y desaparecer la barra de notificaciones de Google+, muy útil si queremos personalizar al máximo nuestro G+. &lt;br /&gt;&lt;br /&gt; &lt;img src=&quot;http://craftyman.net/wp-content/images/googlepluscss.JPG&quot; border=&quot;0&quot; alt=&quot;&quot;/&gt; &lt;br /&gt;&lt;br /&gt; &lt;b&gt;A continuación una lista de las mejores características de este Plugin.&lt;/b&gt; &lt;br /&gt;&lt;br /&gt; &lt;li&gt;Ocultar diferentes partes de la barra superior (+Username, Gmail, Documents, Reader, etc) &lt;br /&gt; &lt;li&gt;Ocultar partes de la barra izquierda (Sparks, Chat, Welcome, etc) &lt;br /&gt; &lt;li&gt;Ocultar partes de la barra derecha (Suggestions, In your circles, hangoutm etc) &lt;br /&gt; &lt;li&gt;Cambiar el color de las columnas. &lt;br /&gt; &lt;li&gt;Fijar las columnas y/o barra superior. &lt;br /&gt; &lt;li&gt;Cambiar colores de texto. &lt;br /&gt; &lt;li&gt;Cambiar el color de los fondos. &lt;br /&gt;&lt;br /&gt; &lt;span style=&quot;font-size:14pt;&quot;&gt;Descargar plugin: &lt;a class=&quot;link&quot; href=&quot;https://file-sharing.clan.su/go?https://chrome.google.com/webstore/detail/cliffclebhbijaimimdcllfhgfckbfbf&quot; title=&quot;https://chrome.google.com/webstore/detail/cliffclebhbijaimimdcllfhgfckbfbf&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;&lt;b&gt;Google+ CSS&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;</content:encoded>
			<category>T. Para Internet o Webs</category>
			<dc:creator>unViciomás</dc:creator>
			<guid>https://file-sharing.clan.su/forum/69-1931-1</guid>
		</item>
		<item>
			<title>copiar texto al portapapeles con Flash y Javascript</title>
			<link>https://file-sharing.clan.su/forum/69-1930-1</link>
			<pubDate>Wed, 09 Nov 2011 15:48:28 GMT</pubDate>
			<description>Foro: &lt;a href=&quot;https://file-sharing.clan.su/forum/69&quot;&gt;T. Para Internet o Webs&lt;/a&gt;&lt;br /&gt;Autor del tema: unViciomás&lt;br /&gt;Ultimo mensaje ha sido publicado por : unViciomás&lt;br /&gt;Número de respuestas: 0</description>
			<content:encoded>&lt;div align=&quot;center&quot;&gt;&lt;span style=&quot;font-size:20pt;&quot;&gt;&lt;b&gt;Copiar texto al portapapeles con Flash y Javascript&lt;/b&gt;&lt;/span&gt;&lt;/div&gt; &lt;br /&gt;&lt;br /&gt; &lt;span style=&quot;font-size:18pt;&quot;&gt;&lt;b&gt;PASO 1:&lt;/b&gt;&lt;/span&gt; &lt;br /&gt; &lt;b&gt;Para empezar a implementarlo primero tienen que bajarse el Javascript y el botón Flash.&lt;/b&gt; &lt;br /&gt;&lt;br /&gt; &lt;a class=&quot;link&quot; href=&quot;http://unviciomas.com/archivos_/Descargas/CCB.rar&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://unviciomas.com/FORO/D.PNG&quot; border=&quot;0&quot; alt=&quot;&quot;/&gt;&lt;/a&gt; &lt;br /&gt;&lt;br /&gt; &lt;span style=&quot;font-size:18pt;&quot;&gt;&lt;b&gt;PASO 2: Codigo que debe ir entre el &lt;head&gt; &lt;/head&gt;&lt;/b&gt;&lt;/span&gt; &lt;br /&gt;&lt;br /&gt; &lt;b&gt;&lt;head&gt;&lt;/b&gt; &lt;br /&gt; &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt; &lt;br /&gt; &lt;title&gt;copy to clipboard&lt;/title&gt; &lt;br /&gt; &lt;script src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt; &lt;br /&gt; &lt;script src=&quot;&lt;b&gt;http://unviciomas.com/jwplayer/ccb.js&lt;/b&gt;&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt; &lt;br /&gt; &lt;script type=&quot;text/javascript&quot;&gt; &lt;br /&gt; function addIndexCopyButton(){ &lt;br /&gt; var b={ &lt;br /&gt; pathToSwf:&quot;&lt;b&gt;http://unviciomas.com/jwplayer/ccb.swf&lt;/b&gt;?v=3.0&quot;, &lt;br /&gt; imageUrl:&quot;&lt;b&gt;http://unviciomas.com/Web/Iconos/ccb.jpg&lt;/b&gt;&quot;, &lt;br /&gt; height:&quot;26&quot;, &lt;br /&gt; textValue:&quot;Copiar&quot;, &lt;br /&gt; width:&quot;46&quot; &lt;br /&gt; }; &lt;br /&gt; $(&quot;#index_copy_button&quot;).html(&quot;&quot;); &lt;br /&gt; CopyClipboardButton.appendButton(&quot;index_copy_button&quot;,&quot;short_url&quot;,b); &lt;br /&gt; } &lt;br /&gt; addLoadEvent(function(){ &lt;br /&gt; addIndexCopyButton(); &lt;br /&gt; }); &lt;br /&gt;&lt;br /&gt; &lt;/script&gt; &lt;br /&gt; &lt;style&gt; &lt;br /&gt; body { &lt;br /&gt; color:#555555; &lt;br /&gt; font-family:arial,helvetica,sans-serif; &lt;br /&gt; font-size:12px; &lt;br /&gt; } &lt;br /&gt; #short_url { &lt;br /&gt; background-color:#FEFFEC; &lt;br /&gt; border:1px solid #999999; &lt;br /&gt; color:#666666; &lt;br /&gt; display:block; &lt;br /&gt; float:left; &lt;br /&gt; font-size:14px; &lt;br /&gt; margin-right:4px; &lt;br /&gt; padding:3px; &lt;br /&gt; width:220px; &lt;br /&gt; } &lt;br /&gt; &lt;/style&gt; &lt;br /&gt; &lt;b&gt;&lt;/head&gt;&lt;/b&gt; &lt;br /&gt;&lt;br /&gt; &lt;span style=&quot;font-size:18pt;&quot;&gt;&lt;b&gt;PASO 3: Estructura HTML&lt;/b&gt;&lt;/span&gt; &lt;br /&gt;&lt;br /&gt; &lt;form action=&quot;&quot; method=&quot;get&quot;&gt; &lt;br /&gt; &lt;input name=&quot;short_url&quot; id=&quot;short_url&quot; type=&quot;text&quot; value=&quot;Copiar este texto&quot;/&gt; &lt;br /&gt; &lt;span id=&quot;index_copy_button&quot;&gt;&lt;/span&gt; &lt;br /&gt; &lt;/form&gt; &lt;br /&gt;&lt;br /&gt; &lt;span style=&quot;font-size:20pt;&quot;&gt;&lt;a class=&quot;link&quot; href=&quot;http://unviciomas.com/paginas/Copiar_texto_de_una_celda.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;&lt;span style=&quot;color:blue&quot;&gt;&lt;b&gt;VER EJEMPLO&lt;/b&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;</content:encoded>
			<category>T. Para Internet o Webs</category>
			<dc:creator>unViciomás</dc:creator>
			<guid>https://file-sharing.clan.su/forum/69-1930-1</guid>
		</item>
		<item>
			<title>Cómo utilizar Javascript para copiar texto de un campo a otr</title>
			<link>https://file-sharing.clan.su/forum/69-1812-1</link>
			<pubDate>Sat, 29 Oct 2011 17:14:58 GMT</pubDate>
			<description>Foro: &lt;a href=&quot;https://file-sharing.clan.su/forum/69&quot;&gt;T. Para Internet o Webs&lt;/a&gt;&lt;br /&gt;Autor del tema: unViciomás&lt;br /&gt;Ultimo mensaje ha sido publicado por : unViciomás&lt;br /&gt;Número de respuestas: 0</description>
			<content:encoded>&lt;span style=&quot;font-size:19pt;&quot;&gt;&lt;b&gt;Cómo utilizar Javascript para copiar texto de un campo a otro&lt;/b&gt;&lt;/span&gt; &lt;br /&gt;&lt;br /&gt; A menudo, cuando se crea un formulario en una página web, es necesario a sus clientes a llenar un campo como una dirección de correo, así como una dirección de facturación. En lugar de tener a sus clientes a completar el formulario dos veces, usted puede usar JavaScript para copiar los datos del formulario de un campo a otro. &lt;br /&gt; La misma se utiliza JavaScript para agarrar los datos que se ha entrado en un campo de formulario, y cuando la casilla de verificación está seleccionada (marcada), copia de los datos a otro campo en formulario. &lt;br /&gt; &lt;b&gt;El JavaScript utilizado para lograr el efecto es similar a esto:&lt;/b&gt; &lt;br /&gt;&lt;br /&gt; &lt;!--uzcode--&gt;&lt;div class=&quot;bbCodeBlock&quot;&gt;&lt;div class=&quot;bbCodeName&quot; style=&quot;padding-left:5px;font-weight:bold;font-size:7pt&quot;&gt;Code&lt;/div&gt;&lt;div class=&quot;codeMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzc--&gt;&lt;script type=&quot;text/javascript&quot;&gt; &lt;br /&gt; function FillBilling(f&amp;#41; { &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;if(f.billingtoo.checked == true&amp;#41; { &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;f.billingname.value = f.shippingname.value; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;f.billingcity.value = f.shippingcity.value; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;} &lt;br /&gt; } &lt;br /&gt; &lt;/script&gt;&lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt; &lt;br /&gt;&lt;br /&gt; &lt;b&gt;Para añadir más campos, sólo tiene que añadir a los parámetros se muestra más arriba … de esta manera:&lt;/b&gt; &lt;br /&gt;&lt;br /&gt; &lt;!--uzcode--&gt;&lt;div class=&quot;bbCodeBlock&quot;&gt;&lt;div class=&quot;bbCodeName&quot; style=&quot;padding-left:5px;font-weight:bold;font-size:7pt&quot;&gt;Code&lt;/div&gt;&lt;div class=&quot;codeMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzc--&gt;f.billingstate.value = f.shippingstate.value; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;f.billingzip.value = f.shippingzip.value;&lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt; &lt;br /&gt;&lt;br /&gt; &lt;b&gt;El código HTML del formulario que va a utilizar es el siguiente:&lt;/b&gt; &lt;br /&gt;&lt;br /&gt; &lt;b&gt;Mailing Address&lt;/b&gt; &lt;br /&gt; &lt;br&gt;&lt;br&gt; &lt;br /&gt; &lt;form&gt; &lt;br /&gt; Name: &lt;br /&gt; &lt;input type=&quot;&lt;span style=&quot;color:red&quot;&gt;text&lt;/span&gt;&quot; name=&quot;shippingname&quot;&gt; &lt;br /&gt; &lt;br&gt; &lt;br /&gt; City: &lt;br /&gt; &lt;input type=&quot;&lt;span style=&quot;color:red&quot;&gt;text&lt;/span&gt;&quot; name=&quot;shippingcity&quot;&gt; &lt;br /&gt; &lt;br /&gt; &lt;br&gt; &lt;br /&gt; &lt;input type=&quot;&lt;span style=&quot;color:red&quot;&gt;checkbox&lt;/span&gt;&quot; name=&quot;billingtoo&quot; onclick=&quot;&lt;span style=&quot;color:red&quot;&gt;FillBilling(this.form)&lt;/span&gt;&quot;&gt; &lt;br /&gt; &lt;em&gt;Check this box if Billing Address and Mailing Address are the same.&lt;/em&gt; &lt;br /&gt; &lt;P&gt; &lt;br /&gt; &lt;b&gt;Billing Address&lt;/b&gt; &lt;br /&gt; &lt;br&gt;&lt;br&gt; &lt;br /&gt; &lt;br /&gt; Name: &lt;br /&gt; &lt;input type=&quot;&lt;span style=&quot;color:red&quot;&gt;text&lt;/span&gt;&quot; name=&quot;&lt;span style=&quot;color:red&quot;&gt;billingname&lt;/span&gt;&quot;&gt; &lt;br /&gt; &lt;br&gt; &lt;br /&gt; City: &lt;br /&gt; &lt;input type=&quot;&lt;span style=&quot;color:red&quot;&gt;text&lt;/span&gt;&quot; name=&quot;&lt;span style=&quot;color:red&quot;&gt;billingcity&lt;/span&gt;&quot;&gt; &lt;br /&gt; &lt;/form&gt;</content:encoded>
			<category>T. Para Internet o Webs</category>
			<dc:creator>unViciomás</dc:creator>
			<guid>https://file-sharing.clan.su/forum/69-1812-1</guid>
		</item>
		<item>
			<title>Cómo ver vídeos restringidos en YouTube</title>
			<link>https://file-sharing.clan.su/forum/69-1803-1</link>
			<pubDate>Wed, 26 Oct 2011 11:33:08 GMT</pubDate>
			<description>Foro: &lt;a href=&quot;https://file-sharing.clan.su/forum/69&quot;&gt;T. Para Internet o Webs&lt;/a&gt;&lt;br /&gt;Autor del tema: unViciomás&lt;br /&gt;Ultimo mensaje ha sido publicado por : unViciomás&lt;br /&gt;Número de respuestas: 0</description>
			<content:encoded>&lt;div align=&quot;center&quot;&gt;&lt;span style=&quot;font-size:18pt;&quot;&gt;&lt;b&gt;Cómo ver vídeos restringidos en YouTube&lt;/b&gt;&lt;/span&gt; &lt;br /&gt;&lt;br /&gt; Cada vez hay más vídeos en Youtube que a la hora de verlos aparece el letrero en rojo “this video is not available in your country”. No es lo mismo que otros del tipo “this video is no longer…”, simplemente son vídeos que no tienen todos los derechos de reproducción o no se quiere que se vean en todos los países, por lo que con un sencillo truco se pueden ver. &lt;br /&gt;&lt;br /&gt; &lt;img src=&quot;http://k12.kn3.net/taringa/1/0/1/8/9/5/73/jonmatos/946.jpg&quot; border=&quot;0&quot; alt=&quot;&quot;/&gt; &lt;br /&gt;&lt;br /&gt; &lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;El truco es sencillo:&lt;/b&gt;&lt;/span&gt; &lt;br /&gt;&lt;br /&gt; Reemplaza la url &lt;a class=&quot;link&quot; target=&quot;_blank&quot; href=&quot;https://file-sharing.clan.su/go?http://www.youtube.com/watch?v=VIDEOID&quot; title=&quot;http://www.youtube.com/watch?v=VIDEOID&quot; rel=&quot;nofollow&quot;&gt;http://www.youtube.com/watch?v=VIDEOID&lt;/a&gt; con &lt;a class=&quot;link&quot; target=&quot;_blank&quot; href=&quot;https://file-sharing.clan.su/go?http://www.youtube.com/v/VIDEOID&quot; title=&quot;http://www.youtube.com/v/VIDEOID&quot; rel=&quot;nofollow&quot;&gt;http://www.youtube.com/v/VIDEOID&lt;/a&gt; (VIDEOID es el identificador del vídeo de 11 caracteres). &lt;br /&gt;&lt;br /&gt; Un ejemplo es este vídeo de Madonna. Este enlace no se ve, pero hacer lo anterior y podréis ver el vídeo a pantalla completa. &lt;br /&gt;&lt;br /&gt; Este truco también sirve para ver vídeos sin tener que registrarte o logearte dentro de grupos o por edad: “This video or group may contain content that is inappropriate for some users, as flagged by YouTube’s user community. To view this video or group, please verify you are 18 or older by logging in or signing up.” &lt;br /&gt;&lt;br /&gt; &lt;img src=&quot;http://k11.kn3.net/taringa/1/0/1/8/9/5/73/jonmatos/2A6.jpg&quot; border=&quot;0&quot; alt=&quot;&quot;/&gt; &lt;br /&gt;&lt;br /&gt; Esto funciona porque la url &lt;a class=&quot;link&quot; target=&quot;_blank&quot; href=&quot;https://file-sharing.clan.su/go?http://www.youtube.com/v/VIDEOID&quot; title=&quot;http://www.youtube.com/v/VIDEOID&quot; rel=&quot;nofollow&quot;&gt;http://www.youtube.com/v/VIDEOID&lt;/a&gt; es la que se utiliza para embeber los vídeos en las webs y no puede detectar desde qué país lo estás viendo o si estás logeado o no. &lt;br /&gt; &lt;/div&gt;</content:encoded>
			<category>T. Para Internet o Webs</category>
			<dc:creator>unViciomás</dc:creator>
			<guid>https://file-sharing.clan.su/forum/69-1803-1</guid>
		</item>
		<item>
			<title>Twitter boton de Seguir</title>
			<link>https://file-sharing.clan.su/forum/69-1735-1</link>
			<pubDate>Wed, 12 Oct 2011 07:52:15 GMT</pubDate>
			<description>Foro: &lt;a href=&quot;https://file-sharing.clan.su/forum/69&quot;&gt;T. Para Internet o Webs&lt;/a&gt;&lt;br /&gt;Autor del tema: unViciomás&lt;br /&gt;Ultimo mensaje ha sido publicado por : unViciomás&lt;br /&gt;Número de respuestas: 0</description>
			<content:encoded>&lt;div align=&quot;center&quot;&gt;&lt;span style=&quot;font-size:16pt;&quot;&gt;&lt;b&gt;Botón de Seguir&lt;/b&gt;&lt;/span&gt; &lt;br /&gt;&lt;br /&gt; Añade el botón Seguir a tu página web para aumentar la participación y estar en contacto permanente con tu público.&lt;/div&gt; &lt;br /&gt;&lt;br /&gt; Twitter ha activado el botón Follow o botón Seguir, en páginas web con el que cualquier usuario podrá hacerse seguidor de nuestra cuenta en Twitter desde nuestro propio site. &lt;br /&gt;&lt;br /&gt; &lt;b&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;LINK: &lt;a class=&quot;link&quot; target=&quot;_blank&quot; href=&quot;https://file-sharing.clan.su/go?http://twitter.com/about/resources/followbutton&quot; title=&quot;http://twitter.com/about/resources/followbutton&quot; rel=&quot;nofollow&quot;&gt;http://twitter.com/about/resources/followbutton&lt;/a&gt; &lt;/b&gt;&lt;/span&gt;</content:encoded>
			<category>T. Para Internet o Webs</category>
			<dc:creator>unViciomás</dc:creator>
			<guid>https://file-sharing.clan.su/forum/69-1735-1</guid>
		</item>
		<item>
			<title>abrir pagina nueva con un tamaño definido</title>
			<link>https://file-sharing.clan.su/forum/69-1616-1</link>
			<pubDate>Sat, 17 Sep 2011 09:26:16 GMT</pubDate>
			<description>Foro: &lt;a href=&quot;https://file-sharing.clan.su/forum/69&quot;&gt;T. Para Internet o Webs&lt;/a&gt;&lt;br /&gt;Autor del tema: unViciomás&lt;br /&gt;Ultimo mensaje ha sido publicado por : unViciomás&lt;br /&gt;Número de respuestas: 0</description>
			<content:encoded>&lt;div align=&quot;center&quot;&gt;&lt;span style=&quot;font-size:16pt;&quot;&gt;&lt;b&gt;abrir pagina nueva con un tamaño definido&lt;/b&gt;&lt;/span&gt;&lt;/div&gt; &lt;br /&gt;&lt;br /&gt; &lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;codigo:&lt;/b&gt;&lt;/span&gt; &lt;br /&gt; &lt;!--uzquote--&gt;&lt;div class=&quot;bbQuoteBlock&quot;&gt;&lt;div class=&quot;bbQuoteName&quot; style=&quot;padding-left:5px;font-size:7pt&quot;&gt;&lt;b&gt;Quote&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;quoteMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzq--&gt;&lt;a target=&quot;_blank&quot; onClick=&quot;window.open(this.href, this.target, &apos;width=&lt;b&gt;500&lt;/b&gt;,height=&lt;b&gt;500&lt;/b&gt;&apos;); return false;&quot; style=&quot;text-decoration: none&quot; href=&quot;&lt;span style=&quot;color:blue&quot;&gt;http://www.URL.com&lt;/span&gt;&quot;&gt;&lt;b&gt;UNVICIOMASPUNTOCOM&lt;/b&gt;&lt;/a&gt;&lt;!--/uzq--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzquote--&gt;</content:encoded>
			<category>T. Para Internet o Webs</category>
			<dc:creator>unViciomás</dc:creator>
			<guid>https://file-sharing.clan.su/forum/69-1616-1</guid>
		</item>
		<item>
			<title>boton para compartir en Facebook y Twitter</title>
			<link>https://file-sharing.clan.su/forum/69-1427-1</link>
			<pubDate>Sat, 25 Jun 2011 17:34:01 GMT</pubDate>
			<description>Foro: &lt;a href=&quot;https://file-sharing.clan.su/forum/69&quot;&gt;T. Para Internet o Webs&lt;/a&gt;&lt;br /&gt;Autor del tema: unViciomás&lt;br /&gt;Ultimo mensaje ha sido publicado por : unViciomás&lt;br /&gt;Número de respuestas: 0</description>
			<content:encoded>&lt;a href=&quot;http://twitter.com/home?status=http://www.unviciomas.com&quot; target=&quot;_blank&quot;&gt;&lt;img title=&quot;Compartir en Twitter&quot; src=&quot;http://unviciomas.com/Web/Iconos/twitter_80.gif&quot; alt=&quot;&quot; /&gt;&lt;/a&gt; &lt;br /&gt;&lt;br /&gt; &lt;!--uzcode--&gt;&lt;div class=&quot;bbCodeBlock&quot;&gt;&lt;div class=&quot;bbCodeName&quot; style=&quot;padding-left:5px;font-weight:bold;font-size:7pt&quot;&gt;Code&lt;/div&gt;&lt;div class=&quot;codeMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzc--&gt;&lt;a href=&quot;http&amp;#58;//twitter.com/home?status=http&amp;#58;//www.unviciomas.com&quot; target=&quot;_blank&quot;&gt;&lt;img title=&quot;Compartir en Twitter&quot; src=&quot;http&amp;#58;//unviciomas.com/Web/Iconos/twitter_80.gif&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt; &lt;br /&gt;&lt;br /&gt; &lt;a href=&quot;http://www.facebook.com/sharer.php?u=http://www.unviciomas.com&quot; target=&quot;_blank&quot;&gt;&lt;img title=&quot;Compartir en Facebook&quot; src=&quot;http://unviciomas.com/Web/Iconos/facebook_80.png&quot; alt=&quot;&quot; /&gt;&lt;/a&gt; &lt;br /&gt;&lt;br /&gt; &lt;!--uzcode--&gt;&lt;div class=&quot;bbCodeBlock&quot;&gt;&lt;div class=&quot;bbCodeName&quot; style=&quot;padding-left:5px;font-weight:bold;font-size:7pt&quot;&gt;Code&lt;/div&gt;&lt;div class=&quot;codeMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzc--&gt;&lt;a href=&quot;http&amp;#58;//www.facebook.com/sharer.php?u=http&amp;#58;//www.unviciomas.com&quot; target=&quot;_blank&quot;&gt;&lt;img title=&quot;Compartir en Facebook&quot; src=&quot;http&amp;#58;//unviciomas.com/Web/Iconos/facebook_80.png&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt;</content:encoded>
			<category>T. Para Internet o Webs</category>
			<dc:creator>unViciomás</dc:creator>
			<guid>https://file-sharing.clan.su/forum/69-1427-1</guid>
		</item>
		<item>
			<title>boton de imprimir en Javascript</title>
			<link>https://file-sharing.clan.su/forum/69-1406-1</link>
			<pubDate>Thu, 23 Jun 2011 00:25:56 GMT</pubDate>
			<description>Foro: &lt;a href=&quot;https://file-sharing.clan.su/forum/69&quot;&gt;T. Para Internet o Webs&lt;/a&gt;&lt;br /&gt;Autor del tema: unViciomás&lt;br /&gt;Ultimo mensaje ha sido publicado por : unViciomás&lt;br /&gt;Número de respuestas: 0</description>
			<content:encoded>&lt;div align=&quot;center&quot;&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;boton de imprimir en Javascript&lt;/b&gt;&lt;/span&gt;&lt;/div&gt; &lt;br /&gt;&lt;br /&gt; &lt;div align=&quot;center&quot;&gt;&lt;input type=&quot;button&quot; value=&quot;IMPRIMIR&quot; onclick=&quot;javascript:window.print( &apos;imprimir&apos;, &apos;width=863, height=auto, scrollbars=NO&apos;)&quot;&gt; &lt;br /&gt;&lt;br /&gt; &lt;!--uzcode--&gt;&lt;div class=&quot;bbCodeBlock&quot;&gt;&lt;div class=&quot;bbCodeName&quot; style=&quot;padding-left:5px;font-weight:bold;font-size:7pt&quot;&gt;Code&lt;/div&gt;&lt;div class=&quot;codeMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzc--&gt; &lt;br /&gt; &lt;input type=&quot;button&quot; value=&quot;IMPRIMIR&quot; onclick=&quot;javascript:window.print( &apos;imprimir&apos;, &apos;width=863, height=auto, scrollbars=NO&apos;&amp;#41;&quot;&gt; &lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt;&lt;/div&gt;</content:encoded>
			<category>T. Para Internet o Webs</category>
			<dc:creator>unViciomás</dc:creator>
			<guid>https://file-sharing.clan.su/forum/69-1406-1</guid>
		</item>
		<item>
			<title>Enviar email con archivos adjuntos en PHP</title>
			<link>https://file-sharing.clan.su/forum/69-1405-1</link>
			<pubDate>Wed, 22 Jun 2011 16:09:35 GMT</pubDate>
			<description>Foro: &lt;a href=&quot;https://file-sharing.clan.su/forum/69&quot;&gt;T. Para Internet o Webs&lt;/a&gt;&lt;br /&gt;Autor del tema: unViciomás&lt;br /&gt;Ultimo mensaje ha sido publicado por : unViciomás&lt;br /&gt;Número de respuestas: 0</description>
			<content:encoded>&lt;div align=&quot;center&quot;&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;Enviar email con archivos adjuntos en PHP &lt;/b&gt;&lt;/span&gt;&lt;/div&gt; &lt;br /&gt;&lt;br /&gt; &lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;Formulario.html:&lt;/b&gt;&lt;/span&gt; &lt;br /&gt;&lt;br /&gt; &lt;!--uzquote--&gt;&lt;div class=&quot;bbQuoteBlock&quot;&gt;&lt;div class=&quot;bbQuoteName&quot; style=&quot;padding-left:5px;font-size:7pt&quot;&gt;&lt;b&gt;Quote&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;quoteMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzq--&gt;&lt;form name=&apos;formulario&apos; id=&apos;formulario&apos; method=&apos;post&apos; action=&apos;enviar.php&apos; target=&apos;_self&apos; enctype=&quot;multipart/form-data&quot;&gt; &lt;br /&gt; &lt;p&gt;Nombre &lt;input type=&apos;text&apos; name=&apos;Nombre&apos; id=&apos;Nombre&apos;&gt;&lt;/p&gt; &lt;br /&gt; &lt;p&gt;E-mail &lt;br /&gt; &lt;input type=&apos;text&apos; name=&apos;email&apos; id=&apos;email&apos;&gt; &lt;br /&gt; &lt;/p&gt; &lt;br /&gt; &lt;p&gt;Asunto &lt;br /&gt; &lt;input type=&apos;text&apos; name=&apos;asunto&apos; id=&apos;asunto&apos; /&gt; &lt;br /&gt; &lt;/p&gt; &lt;br /&gt; &lt;p&gt;Mensaje &lt;br /&gt; &lt;textarea name=&quot;mensaje&quot; cols=&quot;50&quot; rows=&quot;10&quot; id=&quot;mensaje&quot;&gt;&lt;/textarea&gt; &lt;br /&gt; &lt;/p&gt; &lt;br /&gt; &lt;p&gt;Adjuntar archivo: &lt;input type=&apos;file&apos; name=&apos;archivo1&apos; id=&apos;archivo1&apos;&gt;&lt;/p&gt; &lt;br /&gt; &lt;p&gt; &lt;br /&gt; &lt;input type=&apos;submit&apos; value=&apos;Enviar&apos;&gt; &lt;br /&gt; &lt;/p&gt; &lt;br /&gt; &lt;/form&gt;&lt;!--/uzq--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzquote--&gt; &lt;br /&gt;&lt;br /&gt; &lt;b&gt;Como podéis ver, en el form del código anterior, se manda a enviar.php, ese archivo es el que va a mandar el email con el archivo adjunto. Aquí os dejo el codigo&lt;/b&gt; &lt;br /&gt;&lt;br /&gt; &lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;enviar.php:&lt;/b&gt; &lt;br /&gt;&lt;/span&gt; &lt;br /&gt; &lt;!--uzquote--&gt;&lt;div class=&quot;bbQuoteBlock&quot;&gt;&lt;div class=&quot;bbQuoteName&quot; style=&quot;padding-left:5px;font-size:7pt&quot;&gt;&lt;b&gt;Quote&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;quoteMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzq--&gt;&lt;?php &lt;br /&gt; function form_mail($sPara, $sAsunto, $sTexto, $sDe) &lt;br /&gt; { &lt;br /&gt; $bHayFicheros = 0; &lt;br /&gt; $sCabeceraTexto = &quot;&quot;; &lt;br /&gt; $sAdjuntos = &quot;&quot;; &lt;br /&gt;&lt;br /&gt; if ($sDe)$sCabeceras = &quot;From:&quot;.$sDe.&quot;&amp;#92;n&quot;; &lt;br /&gt; else $sCabeceras = &quot;&quot;; &lt;br /&gt; $sCabeceras .= &quot;MIME-version: 1.0&amp;#92;n&quot;; &lt;br /&gt; foreach ($_POST as $sNombre =&gt; $sValor) &lt;br /&gt; $sTexto = $sTexto.&quot;&amp;#92;n&quot;.$sNombre.&quot; = &quot;.$sValor; &lt;br /&gt;&lt;br /&gt; foreach ($_FILES as $vAdjunto) &lt;br /&gt; { &lt;br /&gt; if ($bHayFicheros == 0) &lt;br /&gt; { &lt;br /&gt; $bHayFicheros = 1; &lt;br /&gt; $sCabeceras .= &quot;Content-type: multipart/mixed;&quot;; &lt;br /&gt; $sCabeceras .= &quot;boundary=&amp;#92;&quot;--_Separador-de-mensajes_--&amp;#92;&quot;&amp;#92;n&quot;; &lt;br /&gt;&lt;br /&gt; $sCabeceraTexto = &quot;----_Separador-de-mensajes_--&amp;#92;n&quot;; &lt;br /&gt; $sCabeceraTexto .= &quot;Content-type: text/plain;charset=iso-8859-1&amp;#92;n&quot;; &lt;br /&gt; $sCabeceraTexto .= &quot;Content-transfer-encoding: 7BIT&amp;#92;n&quot;; &lt;br /&gt;&lt;br /&gt; $sTexto = $sCabeceraTexto.$sTexto; &lt;br /&gt; } &lt;br /&gt; if ($vAdjunto[&quot;size&quot;] &gt; 0) &lt;br /&gt; { &lt;br /&gt; $sAdjuntos .= &quot;&amp;#92;n&amp;#92;n----_Separador-de-mensajes_--&amp;#92;n&quot;; &lt;br /&gt; $sAdjuntos .= &quot;Content-type: &quot;.$vAdjunto[&quot;type&quot;].&quot;;name=&amp;#92;&quot;&quot;.$vAdjunto[&quot;name&quot;].&quot;&amp;#92;&quot;&amp;#92;n&quot;;; &lt;br /&gt; $sAdjuntos .= &quot;Content-Transfer-Encoding: BASE64&amp;#92;n&quot;; &lt;br /&gt; $sAdjuntos .= &quot;Content-disposition: attachment;filename=&amp;#92;&quot;&quot;.$vAdjunto[&quot;name&quot;].&quot;&amp;#92;&quot;&amp;#92;n&amp;#92;n&quot;; &lt;br /&gt;&lt;br /&gt; $oFichero = fopen($vAdjunto[&quot;tmp_name&quot;], &apos;r&apos;); &lt;br /&gt; $sContenido = fread($oFichero, filesize($vAdjunto[&quot;tmp_name&quot;])); &lt;br /&gt; $sAdjuntos .= chunk_split(base64_encode($sContenido)); &lt;br /&gt; fclose($oFichero); &lt;br /&gt; } &lt;br /&gt; } &lt;br /&gt;&lt;br /&gt; if ($bHayFicheros) &lt;br /&gt; $sTexto .= $sAdjuntos.&quot;&amp;#92;n&amp;#92;n----_Separador-de-mensajes_----&amp;#92;n&quot;; &lt;br /&gt; return(mail($sPara, $sAsunto, $sTexto, $sCabeceras)); &lt;br /&gt; } &lt;br /&gt;&lt;br /&gt; //cambiar aqui el email &lt;br /&gt; if (form_mail(&quot;&lt;b&gt;&lt;span style=&quot;color:red&quot;&gt;poner_email@deDestino.com&lt;/span&gt;&lt;/b&gt;&quot;, $_POST[asunto], &lt;br /&gt; &quot;Los datos introducidos en el formulario son:&amp;#92;n&amp;#92;n&quot;, $_POST[email])) &lt;br /&gt; echo &quot;Su formulario ha sido enviado con exito&quot;; &lt;br /&gt; ?&gt;&lt;!--/uzq--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzquote--&gt; &lt;br /&gt;&lt;br /&gt; &lt;b&gt;Tan solo debemos cambiar el email que aparece por el nuestro y ya estará listo.&lt;/b&gt;</content:encoded>
			<category>T. Para Internet o Webs</category>
			<dc:creator>unViciomás</dc:creator>
			<guid>https://file-sharing.clan.su/forum/69-1405-1</guid>
		</item>
		<item>
			<title>formulario html y php</title>
			<link>https://file-sharing.clan.su/forum/69-1404-1</link>
			<pubDate>Tue, 21 Jun 2011 23:27:21 GMT</pubDate>
			<description>Foro: &lt;a href=&quot;https://file-sharing.clan.su/forum/69&quot;&gt;T. Para Internet o Webs&lt;/a&gt;&lt;br /&gt;Autor del tema: unViciomás&lt;br /&gt;Ultimo mensaje ha sido publicado por : unViciomás&lt;br /&gt;Número de respuestas: 0</description>
			<content:encoded>&lt;div align=&quot;center&quot;&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;formulario html y php&lt;/b&gt;&lt;/span&gt;&lt;/div&gt; &lt;br /&gt;&lt;br /&gt; &lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;Codigo HTML&lt;/b&gt;&lt;/span&gt; &lt;br /&gt;&lt;br /&gt; &lt;!--uzcode--&gt;&lt;div class=&quot;bbCodeBlock&quot;&gt;&lt;div class=&quot;bbCodeName&quot; style=&quot;padding-left:5px;font-weight:bold;font-size:7pt&quot;&gt;Code&lt;/div&gt;&lt;div class=&quot;codeMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzc--&gt;&lt;html&gt; &lt;br /&gt; &lt;head&gt; &lt;br /&gt; &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=windows-1252&quot;&gt; &lt;title&gt;Formulario&lt;/title&gt; &lt;br /&gt; &lt;/head&gt; &lt;br /&gt; &lt;body&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; &lt;table width=&quot;343&quot; border=&quot;0&quot;&gt; &lt;tr&gt; &lt;td&gt;&lt;form name=&quot;form1&quot; method=&quot;post&quot; action=&quot;enviar.php&quot;&gt; &lt;br /&gt; &lt;table width=&quot;338&quot; border=&quot;0&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; &lt;tr&gt; &lt;br /&gt; &lt;td&gt;Nombre:&lt;/td&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; &lt;td&gt;&lt;input name=&quot;nombre&quot; type=&quot;text&quot; id=&quot;nombre&quot;&gt;&lt;/td&gt; &lt;br /&gt; &lt;/tr&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; &lt;tr&gt; &lt;br /&gt; &lt;td&gt;Email:&lt;/td&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; &lt;td&gt;&lt;input name=&quot;email&quot; type=&quot;text&quot; id=&quot;email&quot;&gt;&lt;/td&gt; &lt;br /&gt; &lt;/tr&gt; &lt;br /&gt; &lt;tr&gt; &lt;br /&gt; &lt;td&gt;Mensaje:&lt;/td&gt; &lt;br /&gt; &lt;td&gt;&lt;textarea name=&quot;msg&quot; id=&quot;msg&quot;&gt;&lt;/textarea&gt;&lt;/td&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; &lt;/tr&gt; &lt;br /&gt; &lt;tr&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; &lt;td&gt;&lt;input type=&quot;submit&quot; name=&quot;Submit&quot; value=&quot;Enviar&quot;&gt;&lt;/td&gt; &lt;br /&gt; &lt;td&gt; &lt;/td&gt; &lt;br /&gt; &lt;/tr&gt; &lt;br /&gt; &lt;/table&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; &lt;/form&gt;&lt;/td&gt; &lt;br /&gt; &lt;/tr&gt; &lt;/table&gt; &lt;br /&gt; &lt;/body&gt; &lt;br /&gt; &lt;/html&gt;&lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt; &lt;br /&gt;&lt;br /&gt; &lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;PARA CONTRASEÑA HTML: &lt;/b&gt;&lt;/span&gt; &lt;br /&gt; &lt;!--uzquote--&gt;&lt;div class=&quot;bbQuoteBlock&quot;&gt;&lt;div class=&quot;bbQuoteName&quot; style=&quot;padding-left:5px;font-size:7pt&quot;&gt;&lt;b&gt;Quote&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;quoteMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzq--&gt;&lt;tr&gt; &lt;br /&gt; &lt;td&gt;Contraseña:&lt;/td&gt; &lt;br /&gt; &lt;td&gt;&lt;input type=&quot;password&quot; name=&quot;pass&quot;&gt;&lt;/td&gt; &lt;br /&gt; &lt;/tr&gt;&lt;!--/uzq--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzquote--&gt; &lt;br /&gt;&lt;br /&gt; &lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;Codigo PHP Nombre del archivo - enviar.php &lt;/b&gt;&lt;/span&gt; &lt;br /&gt;&lt;br /&gt; &lt;!--uzcode--&gt;&lt;div class=&quot;bbCodeBlock&quot;&gt;&lt;div class=&quot;bbCodeName&quot; style=&quot;padding-left:5px;font-weight:bold;font-size:7pt&quot;&gt;Code&lt;/div&gt;&lt;div class=&quot;codeMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzc--&gt;&lt;?php&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt;&lt;br /&gt; $mail=&apos;TuEmail@hotmail.com&apos;;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; $nombre = $_POST&amp;#91;&apos;nombre&apos;];&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; $email = $_POST&amp;#91;&apos;email&apos;];&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; $msg = $_POST&amp;#91;&apos;msg&apos;];&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt;&lt;br /&gt; $thank=&quot;index.html&quot;;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt;&lt;br /&gt; $message = &quot;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; nombre:&quot;.$nombre.&quot;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; email:&quot;.$email.&quot;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; msg:&quot;.$msg.&quot;&quot;;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if (mail($mail,&quot;unViciomas&quot;,$message&amp;#41;&amp;#41;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Header (&quot;Location: http&amp;#58;//www.unviciomas.com&quot;&amp;#41;;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;?&gt;&lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt; &lt;br /&gt;&lt;br /&gt; &lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;PARA CONTRASEÑA PHP: &lt;/b&gt;&lt;/span&gt; &lt;br /&gt; &lt;!--uzquote--&gt;&lt;div class=&quot;bbQuoteBlock&quot;&gt;&lt;div class=&quot;bbQuoteName&quot; style=&quot;padding-left:5px;font-size:7pt&quot;&gt;&lt;b&gt;Quote&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;quoteMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzq--&gt;&lt;b&gt;1) &lt;span style=&quot;color:red&quot;&gt;$pass = $_POST[&apos;pass&apos;];&lt;/span&gt; &lt;br /&gt; 2) &lt;span style=&quot;color:blue&quot;&gt;pass:&quot;.$pass.&quot;&lt;/span&gt;&lt;/b&gt; &lt;br /&gt; &lt;!--/uzq--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzquote--&gt;</content:encoded>
			<category>T. Para Internet o Webs</category>
			<dc:creator>unViciomás</dc:creator>
			<guid>https://file-sharing.clan.su/forum/69-1404-1</guid>
		</item>
		<item>
			<title>Efecto marquee frena cuando pasas el mouse por arriba html</title>
			<link>https://file-sharing.clan.su/forum/69-1383-1</link>
			<pubDate>Fri, 17 Jun 2011 07:54:15 GMT</pubDate>
			<description>Foro: &lt;a href=&quot;https://file-sharing.clan.su/forum/69&quot;&gt;T. Para Internet o Webs&lt;/a&gt;&lt;br /&gt;Autor del tema: unViciomás&lt;br /&gt;Ultimo mensaje ha sido publicado por : unViciomás&lt;br /&gt;Número de respuestas: 0</description>
			<content:encoded>&lt;div align=&quot;center&quot;&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;Efecto Marquee frena cuando pasas el mouse por arriba html&lt;/b&gt;&lt;/span&gt;&lt;/div&gt; &lt;br /&gt;&lt;br /&gt; &lt;marquee direction=&quot;left&quot; scrolldelay=&quot;5&quot; onmouseover=&quot;this.stop()&quot; onmouseout=&quot;this.start()&quot;&gt; &lt;br /&gt; &lt;a href=&quot;https://file-sharing.clan.su/go?http://www.facebook.com/&quot; title=&quot;http://www.facebook.com/&quot; target=&quot;_blank&quot;&gt; &lt;img src=&quot;http://unviciomas.com/Imagenes/otras/facebook-logo-57.png&quot; width=&quot;191&quot; height=&quot;34&quot; /&gt;&lt;/a&gt;     &lt;a href=&quot;https://file-sharing.clan.su/go?http://twitter.com&quot; title=&quot;http://twitter.com&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://unviciomas.com/Imagenes/otras/twitter-logo-57.png&quot; width=&quot;158&quot; height=&quot;33&quot; /&gt;&lt;/a&gt;     &lt;a href=&quot;https://file-sharing.clan.su/go?http://www.youtube.com/user/wwwfilesharingclansu&quot; title=&quot;http://www.youtube.com/user/wwwfilesharingclansu&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://unviciomas.com/Imagenes/otras/Youtube-logo-57.png&quot; width=&quot;86&quot; height=&quot;35&quot; /&gt;&lt;/a&gt;&lt;/marquee&gt; &lt;br /&gt;&lt;br /&gt; &lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;DIRECCIÓN:&lt;/b&gt;&lt;/span&gt; se utiliza para modificar la dirección hacia la que se dirige el texto. Puede ser &lt;b&gt;left&lt;/b&gt;, &lt;b&gt;right&lt;/b&gt;, &lt;b&gt;up&lt;/b&gt; o &lt;b&gt;down&lt;/b&gt; &lt;br /&gt;&lt;br /&gt; &lt;!--uzcode--&gt;&lt;div class=&quot;bbCodeBlock&quot;&gt;&lt;div class=&quot;bbCodeName&quot; style=&quot;padding-left:5px;font-weight:bold;font-size:7pt&quot;&gt;Code&lt;/div&gt;&lt;div class=&quot;codeMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzc--&gt;&lt;marquee direction=&quot;left&quot; onmouseover=&quot;this.stop(&amp;#41;&quot; onmouseout=&quot;this.start(&amp;#41;&quot;&gt;&lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt; &lt;br /&gt;&lt;br /&gt; &lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;TIEMPO:&lt;/b&gt;&lt;/span&gt; Con el atributo &lt;b&gt;SCROLLDELAY &lt;/b&gt;se define el tiempo entre cada movimiento expresado en milisegundos &lt;br /&gt;&lt;br /&gt; &lt;!--uzcode--&gt;&lt;div class=&quot;bbCodeBlock&quot;&gt;&lt;div class=&quot;bbCodeName&quot; style=&quot;padding-left:5px;font-weight:bold;font-size:7pt&quot;&gt;Code&lt;/div&gt;&lt;div class=&quot;codeMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzc--&gt;&lt;marquee direction=&quot;left&quot; scrolldelay=&quot;200&quot; onmouseover=&quot;this.stop(&amp;#41;&quot; onmouseout=&quot;this.start(&amp;#41;&quot;&gt;&lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt; &lt;br /&gt;&lt;br /&gt; &lt;!--uzcode--&gt;&lt;div class=&quot;bbCodeBlock&quot;&gt;&lt;div class=&quot;bbCodeName&quot; style=&quot;padding-left:5px;font-weight:bold;font-size:7pt&quot;&gt;Code&lt;/div&gt;&lt;div class=&quot;codeMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzc--&gt;&lt;marquee onmouseover=&quot;this.stop(&amp;#41;&quot; onmouseout=&quot;this.start(&amp;#41;&quot;&gt; &lt;br /&gt; &lt;a href=&quot;http&amp;#58;//www.facebook.com/&quot; target=&quot;_blank&quot;&gt; &lt;img src=&quot;http&amp;#58;//unviciomas.com/Imagenes/otras/facebook-logo-57.png&quot; width=&quot;191&quot; height=&quot;34&quot; /&gt;&lt;/a&gt; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;a href=&quot;http&amp;#58;//twitter.com&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http&amp;#58;//unviciomas.com/Imagenes/otras/twitter-logo-57.png&quot; width=&quot;158&quot; height=&quot;33&quot; /&gt;&lt;/a&gt;&lt;a href=&quot;http&amp;#58;//www.youtube.com/user/wwwfilesharingclansu&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http&amp;#58;//unviciomas.com/Imagenes/otras/Youtube-logo-57.png&quot; width=&quot;86&quot; height=&quot;35&quot; /&gt;&lt;/a&gt; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/marquee&gt;&lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt; &lt;br /&gt;&lt;br /&gt; &lt;b&gt;¿Podemos controlar una marquesina mientras se ejecuta? Aquí hay un ejemplo simple, mediante dos pseudo-botones, logramos cambiarle la dirección:&lt;/b&gt; &lt;br /&gt;&lt;br /&gt; &lt;!--uzcode--&gt;&lt;div class=&quot;bbCodeBlock&quot;&gt;&lt;div class=&quot;bbCodeName&quot; style=&quot;padding-left:5px;font-weight:bold;font-size:7pt&quot;&gt;Code&lt;/div&gt;&lt;div class=&quot;codeMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzc--&gt;&lt;marquee id=&quot;ejemplo&quot; direction=&quot;up&quot;&gt; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;... contenido ... &lt;br /&gt; &lt;/marquee&gt; &lt;br /&gt;&lt;br /&gt; &lt;a href=&quot;javascript:void(0&amp;#41;;&quot; onclick=&quot;getElementById(&apos;ejemplo&apos;&amp;#41;.direction=&apos;down&apos;;&quot;&gt; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Hacia abajo &lt;br /&gt; &lt;/a&gt; &lt;br /&gt; &lt;a href=&quot;javascript:void(0&amp;#41;;&quot; onclick=&quot;getElementById(&apos;ejemplo&apos;&amp;#41;.direction=&apos;up&apos;;&quot;&gt; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Hacia arriba &lt;br /&gt; &lt;/a&gt;&lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt;</content:encoded>
			<category>T. Para Internet o Webs</category>
			<dc:creator>unViciomás</dc:creator>
			<guid>https://file-sharing.clan.su/forum/69-1383-1</guid>
		</item>
		<item>
			<title>autoResize para textareas</title>
			<link>https://file-sharing.clan.su/forum/69-1377-1</link>
			<pubDate>Tue, 14 Jun 2011 22:56:31 GMT</pubDate>
			<description>Foro: &lt;a href=&quot;https://file-sharing.clan.su/forum/69&quot;&gt;T. Para Internet o Webs&lt;/a&gt;&lt;br /&gt;Autor del tema: unViciomás&lt;br /&gt;Ultimo mensaje ha sido publicado por : unViciomás&lt;br /&gt;Número de respuestas: 0</description>
			<content:encoded>&lt;div align=&quot;center&quot;&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;autoResize para textareas&lt;/b&gt;&lt;/span&gt;&lt;/div&gt; &lt;br /&gt;&lt;br /&gt; autoResize es un plugin para JQuery que te permitirá agregarle la opción de autoescalado a los campos de texto según la cantidad de texto que ingreses, esto para evitar mostrar un scroll y ver el contenido completo. &lt;br /&gt;&lt;br /&gt; &lt;img src=&quot;http://blog.unijimpe.net/wp-content/uploads/2009/03/jquery-autoresize.gif&quot; border=&quot;0&quot; alt=&quot;&quot;/&gt; &lt;br /&gt;&lt;br /&gt; &lt;div align=&quot;center&quot;&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;Como usar este Plugin&lt;/b&gt;&lt;/span&gt;&lt;/div&gt; &lt;br /&gt;&lt;br /&gt; Para utilizar este plugin, es necesario primero descargar las librerías &lt;br /&gt;&lt;br /&gt; &lt;li&gt; &lt;a class=&quot;link&quot; href=&quot;http://unviciomas.com/jwplayer/jquery.min.js&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;&lt;span style=&quot;color:blue&quot;&gt;&lt;b&gt;jquery.js&lt;/b&gt;&lt;/span&gt;&lt;/a&gt; &lt;br /&gt;&lt;br /&gt; &lt;li&gt; &lt;a class=&quot;link&quot; href=&quot;http://unviciomas.com/jwplayer/autoresize.jquery.js&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;&lt;span style=&quot;color:blue&quot;&gt;&lt;b&gt;autoresize.jquery.js&lt;/b&gt;&lt;/span&gt;&lt;/a&gt; &lt;br /&gt;&lt;br /&gt; luego lo incluimos en el &lt;b&gt;header&lt;/b&gt; de nuestro html. &lt;br /&gt;&lt;br /&gt; &lt;!--uzcode--&gt;&lt;div class=&quot;bbCodeBlock&quot;&gt;&lt;div class=&quot;bbCodeName&quot; style=&quot;padding-left:5px;font-weight:bold;font-size:7pt&quot;&gt;Code&lt;/div&gt;&lt;div class=&quot;codeMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzc--&gt;&lt;script type=&quot;text/javascript&quot; src=&quot;https://file-sharing.clan.su/jquery.js&quot;&gt;&lt;/script&gt; &lt;br /&gt; &lt;script type=&quot;text/javascript&quot; src=&quot;https://file-sharing.clan.su/autoresize.jquery.js&quot;&gt;&lt;/script&gt;&lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt; &lt;br /&gt;&lt;br /&gt; El siguiente paso es crear nuestro formulario en donde a los elementos del tipo textarea le asignamos un ID con el cual posteriormente le aplicaremos el método autoresize. &lt;br /&gt;&lt;br /&gt; &lt;!--uzcode--&gt;&lt;div class=&quot;bbCodeBlock&quot;&gt;&lt;div class=&quot;bbCodeName&quot; style=&quot;padding-left:5px;font-weight:bold;font-size:7pt&quot;&gt;Code&lt;/div&gt;&lt;div class=&quot;codeMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzc--&gt;&lt;form id=&quot;comment&quot; method=&quot;post&quot;&gt; &lt;br /&gt; &lt;textarea name=&quot;mensaje&quot; id=&quot;mensaje&quot;&gt;&lt;/textarea&gt; &lt;br /&gt; &lt;input type=&quot;submit&quot; name=&quot;bt&quot; value=&quot;Enviar&quot; /&gt; &lt;br /&gt; &lt;/form&gt;&lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt; &lt;br /&gt;&lt;br /&gt; Finalmente seleccionamos el elemento utilizando el ID al cual aplicamos el método autoresize, esto lo hacemos una vez que ha sido cargada la página para ello utilizamos el evento ready, esto lo hacemos mediante: &lt;br /&gt;&lt;br /&gt; &lt;!--uzcode--&gt;&lt;div class=&quot;bbCodeBlock&quot;&gt;&lt;div class=&quot;bbCodeName&quot; style=&quot;padding-left:5px;font-weight:bold;font-size:7pt&quot;&gt;Code&lt;/div&gt;&lt;div class=&quot;codeMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzc--&gt;$(document&amp;#41;.ready(function (&amp;#41; { &lt;br /&gt; $(&apos;textarea#mensaje&apos;&amp;#41;.autoResize(&amp;#41;; &lt;br /&gt; }&amp;#41;;&lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt; &lt;br /&gt;&lt;br /&gt; Pueden ver el ejemplo funcionando en &lt;a class=&quot;link&quot; href=&quot;http://unviciomas.com/paginas/autosize-Demo.htm&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;&lt;span style=&quot;color:blue&quot;&gt;&lt;b&gt;Autosize Demo&lt;/b&gt;&lt;/span&gt;&lt;/a&gt;. &lt;br /&gt; Como pueden ver es muy sencillo de aplicar este efecto con lo cual conseguiremos facilitar el ingreso de la información. Este script tiene algunas propiedades adicionales que se pueden utilizar para mejorar la presentación de nuestro formulario, para mayor información pueden visitar la web oficial en &lt;a class=&quot;link&quot; href=&quot;https://file-sharing.clan.su/go?http://james.padolsey.com/javascript/jquery-plugin-autoresize/&quot; title=&quot;http://james.padolsey.com/javascript/jquery-plugin-autoresize/&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;&lt;span style=&quot;color:blue&quot;&gt;&lt;b&gt;jQuery plugin: &apos;autoResize&apos;&lt;/b&gt;&lt;/span&gt;&lt;/a&gt;.</content:encoded>
			<category>T. Para Internet o Webs</category>
			<dc:creator>unViciomás</dc:creator>
			<guid>https://file-sharing.clan.su/forum/69-1377-1</guid>
		</item>
		<item>
			<title>Menu desplegable en CSS</title>
			<link>https://file-sharing.clan.su/forum/69-1374-1</link>
			<pubDate>Sun, 12 Jun 2011 04:54:51 GMT</pubDate>
			<description>Foro: &lt;a href=&quot;https://file-sharing.clan.su/forum/69&quot;&gt;T. Para Internet o Webs&lt;/a&gt;&lt;br /&gt;Autor del tema: unViciomás&lt;br /&gt;Ultimo mensaje ha sido publicado por : unViciomás&lt;br /&gt;Número de respuestas: 0</description>
			<content:encoded>&lt;div align=&quot;center&quot;&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;Menu desplegable en CSS&lt;/b&gt;&lt;/span&gt;&lt;/div&gt; &lt;br /&gt;&lt;br /&gt; &lt;span style=&quot;color:red&quot;&gt;&lt;span style=&quot;font-size:15pt;&quot;&gt;&lt;b&gt;CODIGO:&lt;/b&gt;&lt;/span&gt;&lt;/span&gt; &lt;br /&gt;&lt;br /&gt; &lt;b&gt;&lt;style&gt; &lt;br /&gt; ul.menu { /* es la lista principal */ &lt;br /&gt; background-color: #000000; &lt;br /&gt; float: left; &lt;br /&gt; list-style-type: none; &lt;br /&gt; margin: 0; &lt;br /&gt; padding: 0 20px; &lt;br /&gt; } &lt;br /&gt;&lt;br /&gt; ul.menu li { /* cada item de la lista principal */ &lt;br /&gt; border: 2px solid #000000; &lt;br /&gt; display: block; &lt;br /&gt; float: left; &lt;br /&gt; height: 30px; &lt;br /&gt; margin: 0; &lt;br /&gt; padding: 0; &lt;br /&gt; position: relative; &lt;br /&gt; } &lt;br /&gt; ul.menu li:hover { /* efecto hover sobre los items de la lista principal */ &lt;br /&gt; -moz-border-radius: 4px; &lt;br /&gt; background-color: #000; &lt;br /&gt; border:2px solid #ff0000; &lt;br /&gt; } &lt;br /&gt; ul.menu li a { /* cada item de la lista principal es un enlace */ &lt;br /&gt; color: #FFF; &lt;br /&gt; display: block; &lt;br /&gt; float: left; &lt;br /&gt; font-weight: bold; &lt;br /&gt; line-height: 18px; &lt;br /&gt; padding: 6px 15px 5px; &lt;br /&gt; text-decoration: none; &lt;br /&gt; } &lt;br /&gt;&lt;br /&gt; /* el ícono para desplegar el menú */ &lt;br /&gt; ul.menu li a span { &lt;br /&gt; font-weight: normal; &lt;br /&gt; padding-left: 3px; &lt;br /&gt; } &lt;br /&gt; ul.menu li.drop a { &lt;br /&gt; padding-right: 7px; &lt;br /&gt; } &lt;br /&gt; ul.menu li.drop:hover li { &lt;br /&gt; border: none; &lt;br /&gt; } &lt;br /&gt; ul.menu li.drop span.toggle { &lt;br /&gt; background: transparent url(URL_toggle.png) no-repeat scroll 0 -20px; &lt;br /&gt; display: block; &lt;br /&gt; float: left; &lt;br /&gt; height: 26px; &lt;br /&gt; margin: 0 5px; &lt;br /&gt; padding: 0; &lt;br /&gt; width: 20px; &lt;br /&gt; } &lt;br /&gt;&lt;br /&gt; /* los efectos al pasar el ratón que desplegarán el submenú */ &lt;br /&gt; ul.menu li.drop:hover { &lt;br /&gt; -moz-border-radius-bottomleft: 0; &lt;br /&gt; -moz-border-radius-bottomright: 0; &lt;br /&gt; -moz-border-radius-topleft: 4px; &lt;br /&gt; -moz-border-radius-topright: 4px; &lt;br /&gt; } &lt;br /&gt; ul.menu li.drop:hover ul { &lt;br /&gt; display: block; &lt;br /&gt; padding: 0 0 10px 0; &lt;br /&gt; z-index: 1; &lt;br /&gt; } &lt;br /&gt;&lt;br /&gt; ul.menu li ul { /* la lista con el submenú */ &lt;br /&gt; background-color: #555; &lt;br /&gt; display: none; &lt;br /&gt; left: 0; &lt;br /&gt; list-style-type: none; &lt;br /&gt; margin: 0; &lt;br /&gt; padding: 0; &lt;br /&gt; position: absolute; &lt;br /&gt; top: 30px; &lt;br /&gt; width: 100%; &lt;br /&gt; } &lt;br /&gt; ul.menu li ul li { /* cada item del submenú */ &lt;br /&gt; border: none; &lt;br /&gt; float: none; &lt;br /&gt; height: auto; &lt;br /&gt; margin: 0; &lt;br /&gt; padding: 0; &lt;br /&gt; } &lt;br /&gt; ul.menu li ul li a { /* cada item del submenú es un enlace */ &lt;br /&gt; background-color: transparent; &lt;br /&gt; color: #DDD; &lt;br /&gt; display: block; &lt;br /&gt; float: none; &lt;br /&gt; font-size: 13px; &lt;br /&gt; font-weight: normal; &lt;br /&gt; height: auto; &lt;br /&gt; margin: 0; &lt;br /&gt; padding: 5px 15px; &lt;br /&gt; } &lt;br /&gt;&lt;br /&gt; /* efectos sobre los items del submenú */ &lt;br /&gt; ul.menu li:hover ul { &lt;br /&gt; -moz-border-radius-bottomleft: 4px; &lt;br /&gt; -moz-border-radius-bottomright: 4px; &lt;br /&gt; border: none; &lt;br /&gt; background-color: #555; &lt;br /&gt; } &lt;br /&gt; ul.menu li:hover ul * { &lt;br /&gt; -moz-border-radius: 0; &lt;br /&gt; background-color: transparent; &lt;br /&gt; } &lt;br /&gt; ul.menu li ul li:hover { &lt;br /&gt; background-color: #000; &lt;br /&gt; } &lt;br /&gt; &lt;/style&gt; &lt;br /&gt; &lt;body&gt; &lt;br /&gt; &lt;ul class=&quot;menu&quot;&gt; &lt;br /&gt; &lt;li&gt;&lt;a href=&quot;http://unviciomas.com&quot;&gt;Home&lt;/a&gt;&lt;/li&gt; &lt;br /&gt; &lt;li class=&quot;drop&quot;&gt; &lt;br /&gt; &lt;a href=&quot;#&quot;&gt;Herramientas&lt;/a&gt; &lt;br /&gt; &lt;span class=&quot;toggle&quot;&gt; &lt;/span&gt; &lt;br /&gt; &lt;ul&gt; &lt;br /&gt; &lt;li&gt;&lt;a href=&quot;URL_enlace1&quot;&gt;TEXTO ENLACE 1&lt;/a&gt;&lt;/li&gt; &lt;br /&gt; &lt;li&gt;&lt;a href=&quot;URL_enlace2&quot;&gt;TEXTO ENLACE 2&lt;/a&gt;&lt;/li&gt; &lt;br /&gt; &lt;li&gt;&lt;a href=&quot;URL_enlace3&quot;&gt;TEXTO ENLACE 3&lt;/a&gt;&lt;/li&gt; &lt;br /&gt; &lt;/ul&gt; &lt;br /&gt; &lt;/li&gt; &lt;br /&gt; &lt;li&gt;&lt;a href=&quot;URL_enlace&quot;&gt;Contac&lt;/a&gt;&lt;/li&gt; &lt;br /&gt; &lt;li&gt;&lt;a href=&quot;http://unviciomas.com/index/3&quot;&gt;Registrate&lt;/a&gt;&lt;/li&gt; &lt;br /&gt; &lt;/ul&gt; &lt;/b&gt;</content:encoded>
			<category>T. Para Internet o Webs</category>
			<dc:creator>unViciomás</dc:creator>
			<guid>https://file-sharing.clan.su/forum/69-1374-1</guid>
		</item>
		<item>
			<title>Cajon de Descarga para colocar Link</title>
			<link>https://file-sharing.clan.su/forum/69-1328-1</link>
			<pubDate>Fri, 03 Jun 2011 13:54:37 GMT</pubDate>
			<description>Foro: &lt;a href=&quot;https://file-sharing.clan.su/forum/69&quot;&gt;T. Para Internet o Webs&lt;/a&gt;&lt;br /&gt;Autor del tema: unViciomás&lt;br /&gt;Ultimo mensaje ha sido publicado por : WMaster&lt;br /&gt;Número de respuestas: 0</description>
			<content:encoded>&lt;div class=&quot;cajones&quot;&gt; &lt;div id=&quot;dd&quot;&gt; &lt;img src=&quot;https://file-sharing.clan.su/FORO/dd.gif&quot; alt=&quot;Clic en la imagen para ver y ocultar los enlaces&quot; onclick=&quot;if (this.parentNode.parentNode.getElementsByTagName(&apos;div&apos;)[1].getElementsByTagName(&apos;div&apos;)[0].style.display != &apos;&apos;) { this.parentNode.parentNode.getElementsByTagName(&apos;div&apos;)[1].getElementsByTagName(&apos;div&apos;)[0].style.display = &apos;&apos;;this.innerText = &apos;&apos;; this.value = &apos;Hide&apos;; } else { this.parentNode.parentNode.getElementsByTagName(&apos;div&apos;)[1].getElementsByTagName(&apos;div&apos;)[0].style.display = &apos;none&apos;; this.value = &apos;{option}&apos;;}&quot;&gt;&lt;/div&gt; &lt;div style=&quot;display:inline&quot;&gt; &lt;div class=&quot;cajones&quot; id=&quot;ancho&quot; style=&quot;display:none&quot;&gt;&lt;fieldset class=&quot;bordes&quot;&gt; &lt;br /&gt; &lt;a title=&quot;Descargar&quot; target=&quot;_blank&quot; href=&quot;http://unviciomas.com&quot;&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;http://unviciomas.com&lt;/b&gt;&lt;/span&gt;&lt;/a&gt;&lt;/fieldset&gt;&lt;/div&gt;&lt;/div&gt; &lt;br /&gt;&lt;br /&gt; &lt;!--uzcode--&gt;&lt;div class=&quot;bbCodeBlock&quot;&gt;&lt;div class=&quot;bbCodeName&quot; style=&quot;padding-left:5px;font-weight:bold;font-size:7pt&quot;&gt;Code&lt;/div&gt;&lt;div class=&quot;codeMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzc--&gt;&lt;div class=&quot;cajones&quot;&gt; &lt;div id=&quot;dd&quot;&gt; &lt;img src=&quot;https://file-sharing.clan.su/FORO/dd.gif&quot; alt=&quot;Clic en la imagen para ver y ocultar los enlaces&quot; onclick=&quot;if (this.parentNode.parentNode.getElementsByTagName(&apos;div&apos;&amp;#41;&amp;#91;1].getElementsByTagName(&apos;div&apos;&amp;#41;&amp;#91;0].style.display != &apos;&apos;&amp;#41; { this.parentNode.parentNode.getElementsByTagName(&apos;div&apos;&amp;#41;&amp;#91;1].getElementsByTagName(&apos;div&apos;&amp;#41;&amp;#91;0].style.display = &apos;&apos;;this.innerText = &apos;&apos;; this.value = &apos;Hide&apos;; } else { this.parentNode.parentNode.getElementsByTagName(&apos;div&apos;&amp;#41;&amp;#91;1].getElementsByTagName(&apos;div&apos;&amp;#41;&amp;#91;0].style.display = &apos;none&apos;; this.value = &apos;{option}&apos;;}&quot;&gt;&lt;/div&gt; &lt;div style=&quot;display:inline&quot;&gt; &lt;div class=&quot;cajones&quot; id=&quot;ancho&quot; style=&quot;display:none&quot;&gt;&lt;fieldset class=&quot;bordes&quot;&gt;&lt;a title=&quot;Descargar&quot; target=&quot;_blank&quot; href=&quot;http&amp;#58;//unviciomas.com/go?--------TU_LINK&quot;&gt;http&amp;#58;//unviciomas.com&lt;/a&gt;&lt;/fieldset&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt;</content:encoded>
			<category>T. Para Internet o Webs</category>
			<dc:creator>unViciomás</dc:creator>
			<guid>https://file-sharing.clan.su/forum/69-1328-1</guid>
		</item>
		<item>
			<title>Cómo poner imagen y color de fondo en pagina web</title>
			<link>https://file-sharing.clan.su/forum/69-1293-1</link>
			<pubDate>Sun, 22 May 2011 11:36:30 GMT</pubDate>
			<description>Foro: &lt;a href=&quot;https://file-sharing.clan.su/forum/69&quot;&gt;T. Para Internet o Webs&lt;/a&gt;&lt;br /&gt;Autor del tema: unViciomás&lt;br /&gt;Ultimo mensaje ha sido publicado por : WMaster&lt;br /&gt;Número de respuestas: 0</description>
			<content:encoded>&lt;div align=&quot;center&quot;&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;&lt;u&gt;Cómo poner imagen de fondo en HTML&lt;/u&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt; &lt;br /&gt;&lt;br /&gt; &lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;El codigo tiene q ir arriba despues del &lt;span style=&quot;color:red&quot;&gt;&lt;/head&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt; &lt;br /&gt;&lt;br /&gt; &lt;u&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt; &lt;br /&gt; FONDO CON IMAGEN&lt;/b&gt;&lt;/span&gt;&lt;/u&gt; &lt;br /&gt;&lt;br /&gt; &lt;!--uzquote--&gt;&lt;div class=&quot;bbQuoteBlock&quot;&gt;&lt;div class=&quot;bbQuoteName&quot; style=&quot;padding-left:5px;font-size:7pt&quot;&gt;&lt;b&gt;Quote&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;quoteMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzq--&gt;&lt;b&gt;&lt;body background=&quot;&lt;span style=&quot;color:blue&quot;&gt;http://unviciomas.com/fondoooo2.png&lt;/span&gt;&quot;&gt;&lt;/b&gt;&lt;!--/uzq--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzquote--&gt; &lt;br /&gt;&lt;br /&gt; &lt;div align=&quot;center&quot;&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;&lt;u&gt;Cómo poner imagen de fondo en CSS&lt;/u&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt; &lt;br /&gt; &lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt; &lt;br /&gt; El codigo se coloca antes del &lt;span style=&quot;color:red&quot;&gt;&lt;/head&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt; &lt;br /&gt;&lt;br /&gt; &lt;!--uzquote--&gt;&lt;div class=&quot;bbQuoteBlock&quot;&gt;&lt;div class=&quot;bbQuoteName&quot; style=&quot;padding-left:5px;font-size:7pt&quot;&gt;&lt;b&gt;Quote&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;quoteMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzq--&gt;&lt;b&gt;&lt;style type=&quot;text/css&quot;&gt; &lt;br /&gt; &lt;!-- &lt;br /&gt; body { &lt;br /&gt; margin-top: 0px; &lt;br /&gt; background-image: url(&lt;span style=&quot;color:blue&quot;&gt;http://unviciomas.com/fondoooo2.png&lt;/span&gt;); &lt;br /&gt; margin:0px; &lt;br /&gt; padding:0px; &lt;br /&gt; } &lt;br /&gt; --&gt; &lt;br /&gt; &lt;/style&gt;&lt;/b&gt;&lt;!--/uzq--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzquote--&gt; &lt;br /&gt;&lt;br /&gt; &lt;div align=&quot;center&quot;&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;&lt;u&gt;Cómo poner imagen de fondo + Color en CSS&lt;/u&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt; &lt;br /&gt;&lt;br /&gt; &lt;!--uzquote--&gt;&lt;div class=&quot;bbQuoteBlock&quot;&gt;&lt;div class=&quot;bbQuoteName&quot; style=&quot;padding-left:5px;font-size:7pt&quot;&gt;&lt;b&gt;Quote&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;quoteMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzq--&gt;&lt;style type=&quot;text/css&quot;&gt; &lt;br /&gt; &lt;!-- &lt;br /&gt; body { &lt;br /&gt; margin-top: 0px; &lt;br /&gt; background-color: &lt;span style=&quot;color:red&quot;&gt;#0000FF&lt;/span&gt;; &lt;br /&gt; background-image: url(&lt;span style=&quot;color:blue&quot;&gt;http://unviciomas.com/IMAGEN_DE_FONDO.png&lt;/span&gt;); &lt;br /&gt; background-repeat: &lt;span style=&quot;color:blue&quot;&gt;no-&lt;/span&gt;&lt;b&gt;repeat&lt;/b&gt;; &lt;br /&gt; margin:0px; &lt;br /&gt; padding:0px; &lt;br /&gt; } &lt;br /&gt; --&gt; &lt;br /&gt; &lt;/style&gt;&lt;!--/uzq--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzquote--&gt; &lt;br /&gt;&lt;br /&gt; &lt;div align=&quot;center&quot;&gt;&lt;u&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;FONDO SOLAMENTE DE COLOR&lt;/b&gt;&lt;/span&gt;&lt;/u&gt;&lt;/div&gt; &lt;br /&gt;&lt;br /&gt; &lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;El codigo tiene q ir arriba despues del &lt;span style=&quot;color:red&quot;&gt;&lt;/head&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt; &lt;br /&gt;&lt;br /&gt; &lt;!--uzquote--&gt;&lt;div class=&quot;bbQuoteBlock&quot;&gt;&lt;div class=&quot;bbQuoteName&quot; style=&quot;padding-left:5px;font-size:7pt&quot;&gt;&lt;b&gt;Quote&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;quoteMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzq--&gt;&lt;b&gt;&lt;body style=&quot;background:#&lt;span style=&quot;color:blue&quot;&gt;0000FF&lt;/span&gt;; margin:0px; padding:0px;&quot;&gt;&lt;/b&gt;&lt;!--/uzq--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzquote--&gt;</content:encoded>
			<category>T. Para Internet o Webs</category>
			<dc:creator>unViciomás</dc:creator>
			<guid>https://file-sharing.clan.su/forum/69-1293-1</guid>
		</item>
		<item>
			<title>Reproductor de Musica para web [HTML]</title>
			<link>https://file-sharing.clan.su/forum/69-1268-1</link>
			<pubDate>Thu, 19 May 2011 07:40:52 GMT</pubDate>
			<description>Foro: &lt;a href=&quot;https://file-sharing.clan.su/forum/69&quot;&gt;T. Para Internet o Webs&lt;/a&gt;&lt;br /&gt;Autor del tema: unViciomás&lt;br /&gt;Ultimo mensaje ha sido publicado por : WMaster&lt;br /&gt;Número de respuestas: 0</description>
			<content:encoded>&lt;div align=&quot;center&quot;&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;Reproductor de Musica para web [HTML]&lt;/b&gt;&lt;/span&gt;&lt;/div&gt; &lt;p&gt; &lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;En donde dice &lt;span style=&quot;color:blue&quot;&gt;http://CANCION.mp3&lt;/span&gt; tienen q cambiarlo por la direccion de la cancion de ustedes&lt;/b&gt;&lt;/span&gt; &lt;p&gt; &lt;u&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;Reproductor de 1 canción:&lt;/b&gt;&lt;/span&gt;&lt;/u&gt; &lt;p&gt; &lt;object type=&quot;application/x-shockwave-flash&quot; data=&quot;dewplayer.swf&quot; width=&quot;200&quot; height=&quot;20&quot; id=&quot;dewplayer&quot; name=&quot;dewplayer&quot;&gt; &lt;param name=&quot;wmode&quot; value=&quot;transparent&quot; /&gt;&lt;param name=&quot;movie&quot; value=&quot;http://unviciomas.com/jwplayer/dewplayer.swf&quot; /&gt; &lt;param name=&quot;flashvars&quot; value=&quot;mp3=&lt;span style=&quot;color:blue&quot;&gt;http://CANCION.mp3&lt;/span&gt;&quot; /&gt; &lt;/object&gt; &lt;p&gt; &lt;u&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;Reproductor de 1 canción AutoStart:&lt;/b&gt;&lt;/span&gt;&lt;/u&gt; &lt;p&gt; &lt;object type=&quot;application/x-shockwave-flash&quot; data=&quot;dewplayer.swf&quot; width=&quot;200&quot; height=&quot;20&quot; id=&quot;dewplayer&quot; name=&quot;dewplayer&quot;&gt; &lt;param name=&quot;wmode&quot; value=&quot;transparent&quot; /&gt;&lt;param name=&quot;movie&quot; value=&quot;http://unviciomas.com/jwplayer/dewplayer.swf&quot; /&gt; &lt;param name=&quot;flashvars&quot; value=&quot;mp3=&lt;span style=&quot;color:blue&quot;&gt;http://CANCION.mp3&lt;/span&gt;&amp;amp;autostart=1&quot; /&gt; &lt;/object&gt;</content:encoded>
			<category>T. Para Internet o Webs</category>
			<dc:creator>unViciomás</dc:creator>
			<guid>https://file-sharing.clan.su/forum/69-1268-1</guid>
		</item>
		<item>
			<title>Publicar mi web en Google</title>
			<link>https://file-sharing.clan.su/forum/69-1228-1</link>
			<pubDate>Sun, 15 May 2011 09:05:29 GMT</pubDate>
			<description>Foro: &lt;a href=&quot;https://file-sharing.clan.su/forum/69&quot;&gt;T. Para Internet o Webs&lt;/a&gt;&lt;br /&gt;Autor del tema: unViciomás&lt;br /&gt;Ultimo mensaje ha sido publicado por : WMaster&lt;br /&gt;Número de respuestas: 0</description>
			<content:encoded>&lt;div align=&quot;center&quot;&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;Publicar mi web en Google&lt;/b&gt;&lt;/span&gt;&lt;/div&gt; &lt;p&gt; Para ser indexado en Google, aparte de paciencia hay algunos recursos que ayudan, como por ejemplo, dar de alta en el buscador de Google tu sitio: &lt;br /&gt; &lt;a class=&quot;link&quot; href=&quot;https://file-sharing.clan.su/go?http://www.google.co.il/addurl/?continue=/addurl&quot; title=&quot;http://www.google.co.il/addurl/?continue=/addurl&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;&lt;span style=&quot;color:blue&quot;&gt;&lt;b&gt;www.google.co.il/addurl/?continue=/addurl&lt;/b&gt;&lt;/span&gt;&lt;/a&gt; &lt;p&gt; Les recomiendo que se registren en google les dan Herramientas para webmasters hay pueden subir un site map. Tercero seria transformar las direcciones dinámicas en url amigables, o sea de fácil lectura para los buscadores, si buscas en el foro url amigables seguro encuentras como se realiza esto en joomla. &lt;p&gt; Cuarto es el intercambio de links, sitios donde intercambias el link de tu sitio por el link de ellos (el tema de los links es muy importante para Google). &lt;p&gt; Bueno la realidad es que muchos dicen saber exactamente como se hace para figurar en Google pero nadie lo sabe exactamente hay pautas que ayudan como estas que son algunas que te explique.</content:encoded>
			<category>T. Para Internet o Webs</category>
			<dc:creator>unViciomás</dc:creator>
			<guid>https://file-sharing.clan.su/forum/69-1228-1</guid>
		</item>
		<item>
			<title>Como poner un video FLV en una pagina web HTML</title>
			<link>https://file-sharing.clan.su/forum/69-1222-1</link>
			<pubDate>Sat, 14 May 2011 19:04:44 GMT</pubDate>
			<description>Foro: &lt;a href=&quot;https://file-sharing.clan.su/forum/69&quot;&gt;T. Para Internet o Webs&lt;/a&gt;&lt;br /&gt;Autor del tema: unViciomás&lt;br /&gt;Ultimo mensaje ha sido publicado por : WMaster&lt;br /&gt;Número de respuestas: 0</description>
			<content:encoded>&lt;u&gt;&lt;span style=&quot;font-size:16pt;&quot;&gt;&lt;b&gt;Como poner un video FLV en una pagina web HTML&lt;/b&gt;&lt;/span&gt;&lt;/u&gt; &lt;p&gt; &lt;li&gt; Primero debemos crear una carpeta en el Gestor de archivos de nuestra web con el siguiente nombre &lt;b&gt;jwplayer&lt;/b&gt; &lt;p&gt; &lt;li&gt; ahora tenes que descargar este archivo RAR en el cual contiene 2 archivos &lt;a class=&quot;link&quot; href=&quot;http://unviciomas.com/archivos_/Descargas/MediaPlayer_www.unViciomas.com.rar&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;&lt;span style=&quot;color:blue&quot;&gt;&lt;b&gt;DESCARGAR&lt;/b&gt;&lt;/span&gt; &lt;/a&gt; &lt;p&gt; &lt;li&gt; Una ves descargado debemos subir estos 2 archivos, &lt;b&gt;jwplayer.js&lt;/b&gt; y &lt;b&gt;player.swf&lt;/b&gt; en la Carpeta que creamos anteriormente (&lt;b&gt;jwplayer&lt;/b&gt; ). &lt;p&gt; &lt;u&gt;&lt;div align=&quot;center&quot;&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;LISTO UNA VES QUE HICIMOS ESO DEBEMOS COLOCAR EL CODIGO EN LA PAGINA&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;/u&gt; &lt;p&gt; &lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;CODIGO PARA VIDEO SIN IMAGEN:&lt;/b&gt;&lt;/span&gt; &lt;p&gt; &lt;script type=&quot;text/javascript&quot; src=&quot;&lt;b&gt;SUPAGINA&lt;span style=&quot;color:blue&quot;&gt;/jwplayer/jwplayer.js&lt;/b&gt;&lt;/span&gt;&quot;&gt;&lt;/script&gt; &lt;p&gt; &lt;div id=&quot;container&quot;&gt;Loading the player ...&lt;/div&gt; &lt;script type=&quot;text/javascript&quot;&gt; jwplayer(&quot;container&quot;).setup({ flashplayer: &quot;&lt;b&gt;SUPAGINA&lt;span style=&quot;color:blue&quot;&gt;/jwplayer/player.swf&lt;/b&gt;&lt;/span&gt;&quot;, file: &quot;&lt;span style=&quot;color:red&quot;&gt;&lt;b&gt;http://DIRECCION/uploads/video.mp4&lt;/b&gt;&lt;/span&gt;&quot;, height: &lt;b&gt;480&lt;/b&gt;, width: &lt;b&gt;500&lt;/b&gt; }); &lt;/script&gt; &lt;p&gt; &lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;CODIGO PARA VIDEO CON IMAGEN:&lt;/b&gt;&lt;/span&gt; &lt;p&gt; &lt;script type=&quot;text/javascript&quot; src=&quot;&lt;b&gt;SUPAGINA&lt;span style=&quot;color:blue&quot;&gt;/jwplayer/jwplayer.js&lt;/b&gt;&lt;/span&gt;&quot;&gt;&lt;/script&gt; &lt;p&gt; &lt;video src=&quot;&lt;span style=&quot;color:red&quot;&gt;&lt;b&gt;http://DIRECCION/uploads/video.mp4&lt;/b&gt;&lt;/span&gt;&quot; id=&quot;container&quot; poster=&quot;&lt;span style=&quot;color:orange&quot;&gt;&lt;b&gt;http://DIRECCION/imagenes/ricardo.jpg&lt;/b&gt;&lt;/span&gt;&quot; height=&quot;&lt;b&gt;480&lt;/b&gt;&quot; width=&quot;&lt;b&gt;500&lt;/b&gt;&quot;&gt; &lt;/video&gt; &lt;script type=&quot;text/javascript&quot;&gt; jwplayer(&quot;container&quot;).setup({ flashplayer: &quot;&lt;b&gt;SUPAGINA&lt;span style=&quot;color:blue&quot;&gt;/jwplayer/player.swf&lt;/b&gt;&lt;/span&gt;&quot; }); &lt;/script&gt;</content:encoded>
			<category>T. Para Internet o Webs</category>
			<dc:creator>unViciomás</dc:creator>
			<guid>https://file-sharing.clan.su/forum/69-1222-1</guid>
		</item>
		<item>
			<title>Poner un archivo PDF o una Pagina dentro de tu blog o web</title>
			<link>https://file-sharing.clan.su/forum/69-1213-1</link>
			<pubDate>Thu, 12 May 2011 15:16:30 GMT</pubDate>
			<description>Foro: &lt;a href=&quot;https://file-sharing.clan.su/forum/69&quot;&gt;T. Para Internet o Webs&lt;/a&gt;&lt;br /&gt;Autor del tema: unViciomás&lt;br /&gt;Ultimo mensaje ha sido publicado por : WMaster&lt;br /&gt;Número de respuestas: 0</description>
			<content:encoded>&lt;div align=&quot;center&quot;&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;Poner un archivo PDF o una Pagina dentro de tu blog o web&lt;/b&gt;&lt;/span&gt;&lt;/div&gt; &lt;br /&gt;&lt;br /&gt; &lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;br /&gt; &lt;b&gt;Código para ponerlo:&lt;/b&gt;&lt;/span&gt; &lt;br /&gt;&lt;br /&gt; &lt;!--uzquote--&gt;&lt;div class=&quot;bbQuoteBlock&quot;&gt;&lt;div class=&quot;bbQuoteName&quot; style=&quot;padding-left:5px;font-size:7pt&quot;&gt;&lt;b&gt;Quote&lt;/b&gt; (&lt;span class=&quot;qName&quot;&gt;&lt;!--qn--&gt;CODIGO&lt;!--/qn--&gt;&lt;/span&gt;)&lt;/div&gt;&lt;div class=&quot;quoteMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzq--&gt;&lt;span style=&quot;font-size:12pt;&quot;&gt;&lt;b&gt;&lt;iframe src=&quot;&lt;span style=&quot;color:blue&quot;&gt;URL_PAGINA&lt;/span&gt;&quot; width=&quot;100%&quot; height=&quot;300&quot;&gt;&lt;/iframe&gt;&lt;/b&gt;&lt;/span&gt;&lt;!--/uzq--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzquote--&gt; &lt;br /&gt;&lt;br /&gt; &lt;b&gt;&lt;li&gt; Cambia la &lt;span style=&quot;color:blue&quot;&gt;URL_PAGINA&lt;/span&gt; por la tuya correspondiente. &lt;br /&gt;&lt;br /&gt; &lt;li&gt; Modifica el ancho en Width y alto en Height, en cuanto a Width, recomiendo que lo dejes en 100%, así se ajustará automáticamente al ancho del lugar donde lo coloques.&lt;/b&gt;</content:encoded>
			<category>T. Para Internet o Webs</category>
			<dc:creator>unViciomás</dc:creator>
			<guid>https://file-sharing.clan.su/forum/69-1213-1</guid>
		</item>
		<item>
			<title>Mostrar una Imagen para Visitante y otra para Usuarios</title>
			<link>https://file-sharing.clan.su/forum/69-1200-1</link>
			<pubDate>Sat, 30 Apr 2011 00:25:33 GMT</pubDate>
			<description>Foro: &lt;a href=&quot;https://file-sharing.clan.su/forum/69&quot;&gt;T. Para Internet o Webs&lt;/a&gt;&lt;br /&gt;Autor del tema: unViciomás&lt;br /&gt;Ultimo mensaje ha sido publicado por : WMaster&lt;br /&gt;Número de respuestas: 0</description>
			<content:encoded>&lt;div align=&quot;center&quot;&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;Mostrar una Imagen para Visitante y otra para Usuarios&lt;/b&gt;&lt;/span&gt;&lt;/div&gt; &lt;br /&gt;&lt;br /&gt; &lt;b&gt;Esto funciona solo si tenes una pagina en &lt;a class=&quot;link&quot; href=&quot;https://file-sharing.clan.su/go?http://www.ucoz.es&quot; title=&quot;http://www.ucoz.es&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;&lt;span style=&quot;color:blue&quot;&gt;www.ucoz.es&lt;/span&gt;&lt;/a&gt;&lt;/b&gt; &lt;br /&gt;&lt;br /&gt; &lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;ESTA IMAGEN LA MUESTRA SI NO ESTAS CONECTADO----(VISITANTE)&lt;/b&gt;&lt;/span&gt; &lt;br /&gt; &lt;span style=&quot;color:red&quot;&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;CODIGO:&lt;/b&gt;&lt;/span&gt;&lt;/span&gt; &lt;br /&gt; &lt;b&gt;&lt;!--ENDIF--&gt;&lt;!--IF--&gt;&lt;?if(!($USER_LOGGED_IN$))?&gt;&lt;/b&gt;&lt;img alt=&quot;&quot; src=&quot;https://file-sharing.clan.su/Web/Graffiti_verde.png&quot;&gt;&lt;b&gt;&lt;?endif?&gt;&lt;!--ENDIF--&gt;&lt;/b&gt; &lt;br /&gt;&lt;br /&gt; &lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;br /&gt; &lt;b&gt;ESTA IMAGEN LA MUESTRA SI ESTAS CONECTADO----(USUARIO)&lt;/b&gt;&lt;/span&gt; &lt;br /&gt; &lt;span style=&quot;color:red&quot;&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;CODIGO:&lt;/b&gt;&lt;/span&gt;&lt;/span&gt; &lt;br /&gt; &lt;b&gt;&lt;?if($LOGOUT_LINK$)?&gt;&lt;/b&gt;&lt;img alt=&quot;&quot; src=&quot;https://file-sharing.clan.su/Web/Graffiti_rojo.png&quot;&gt;&lt;b&gt;&lt;?endif?&gt;&lt;/b&gt; &lt;br /&gt;&lt;br /&gt; &lt;b&gt;Tambien podes mostrar mensajes o lo que quieras...&lt;/b&gt; &lt;br /&gt;&lt;br /&gt; &lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;br /&gt; &lt;b&gt;ESTE MENSAJE LO MUESTRA SI NO ESTAS CONECTADO----(VISITANTE)&lt;/b&gt;&lt;/span&gt; &lt;br /&gt; &lt;span style=&quot;color:red&quot;&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;CODIGO:&lt;/b&gt;&lt;/span&gt;&lt;/span&gt; &lt;br /&gt; &lt;b&gt;&lt;!--ENDIF--&gt;&lt;!--IF--&gt;&lt;?if(!($USER_LOGGED_IN$))?&gt;&lt;/b&gt;&lt;script language=&quot;JavaScript&quot;&gt;alert(&quot;Ayuda a la Existencia de esta pagina, REGISTRATE!!! Gracias : )&quot;);&lt;/script&gt;&lt;b&gt;&lt;?endif?&gt;&lt;!--ENDIF--&gt;&lt;/b&gt; &lt;br /&gt;&lt;br /&gt; &lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;br /&gt; &lt;b&gt;ESTE MENSAJE LO MUESTRA SI ESTAS CONECTADO----(USUARIO)&lt;/b&gt;&lt;/span&gt; &lt;br /&gt; &lt;span style=&quot;color:red&quot;&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;CODIGO:&lt;/b&gt;&lt;/span&gt;&lt;/span&gt; &lt;br /&gt; &lt;b&gt;&lt;?if($LOGOUT_LINK$)?&gt;&lt;/b&gt;&lt;script language=&quot;JavaScript&quot;&gt;alert(&quot;A salido Gracias&quot;);&lt;/script&gt;&lt;b&gt;&lt;?endif?&gt;&lt;/b&gt;</content:encoded>
			<category>T. Para Internet o Webs</category>
			<dc:creator>unViciomás</dc:creator>
			<guid>https://file-sharing.clan.su/forum/69-1200-1</guid>
		</item>
		<item>
			<title>Tu dominio nic.ar en Blogger</title>
			<link>https://file-sharing.clan.su/forum/69-1186-1</link>
			<pubDate>Thu, 31 Mar 2011 23:29:33 GMT</pubDate>
			<description>Foro: &lt;a href=&quot;https://file-sharing.clan.su/forum/69&quot;&gt;T. Para Internet o Webs&lt;/a&gt;&lt;br /&gt;Autor del tema: unViciomás&lt;br /&gt;Ultimo mensaje ha sido publicado por : WMaster&lt;br /&gt;Número de respuestas: 0</description>
			<content:encoded>&lt;div align=&quot;center&quot;&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;Tu dominio nic.ar en Blogger&lt;/b&gt;&lt;/span&gt;&lt;/div&gt; &lt;p&gt; &lt;b&gt;0k, sigan los siguientes pasos:&lt;/b&gt; &lt;p&gt; &lt;b&gt;1)&lt;/b&gt; Te sacás una cuenta en Cdmon (&lt;a class=&quot;link&quot; href=&quot;https://file-sharing.clan.su/go?http://www.cdmon.com&quot; title=&quot;http://www.cdmon.com&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;&lt;b&gt;http://www.cdmon.com&lt;/b&gt;&lt;/a&gt;), que es un gestor de DNS gratuito. En el panel de control de CDmon ponés “gestionar DNS estático”. En la parte inferior te van a aparecer 3 nombres de servidores: &lt;p&gt; &lt;b&gt;ns1.cdmon.net - 86.109.99.129 &lt;br /&gt; ns2.cdmon.net - 86.109.98.129 &lt;br /&gt; ns3.cdmon.net - 213.186.58.203&lt;/b&gt; &lt;p&gt; &lt;b&gt;2)&lt;/b&gt; Vas a nic.ar (&lt;a class=&quot;link&quot; href=&quot;https://file-sharing.clan.su/go?http://nic.ar&quot; title=&quot;http://nic.ar&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;&lt;b&gt;http://nic.ar&lt;/b&gt;&lt;/a&gt;) y empezás el registro de un dominio. Cuando te pida el ISP ponés delegar (la opción de abajo) y ponés dos de los servidores que menciono arriba. Si todo sale bien, te aparece como responsable de esos servidores un tal Josep Colominas. Después, terminás el registro normalmente. Si tenés un dominio propio ya en nic.ar, vas a “trámites vía web” y entrás en “delegaciones” en la columna “modificaciones”, y ponés los servidores que puse arriba. Los trámites duran entre 48 hs y 1 semana, según si modifiqués o creés un dominio nuevo. &lt;p&gt; &lt;b&gt;3)&lt;/b&gt; Volvés a CDmon y pones “gestionar DNS estático”. Añadís un dominio sin ingresar www (ej: cualquierweb.com.ar). Automáticamente te direcciona a la configuración del dominio donde te van a aparecer muchas opciones (Redirección IP, Redirección URL, Registro CNAME, En construcción, En venta, Maremon). &lt;p&gt; &lt;b&gt;4)&lt;/b&gt; Por último, vas a Blogger, en “Publicación”, dentro de las opciones, ponés que querés utilizar tu dominio propio. Ponés tu dominio y guardás. En un par de horas está todo listo (siempre y cuando el trámite de nic.ar esté terminado).</content:encoded>
			<category>T. Para Internet o Webs</category>
			<dc:creator>unViciomás</dc:creator>
			<guid>https://file-sharing.clan.su/forum/69-1186-1</guid>
		</item>
		<item>
			<title>Tabla de Codigos de Colores</title>
			<link>https://file-sharing.clan.su/forum/69-1181-1</link>
			<pubDate>Tue, 29 Mar 2011 04:32:30 GMT</pubDate>
			<description>Foro: &lt;a href=&quot;https://file-sharing.clan.su/forum/69&quot;&gt;T. Para Internet o Webs&lt;/a&gt;&lt;br /&gt;Autor del tema: unViciomás&lt;br /&gt;Ultimo mensaje ha sido publicado por : WMaster&lt;br /&gt;Número de respuestas: 0</description>
			<content:encoded>&lt;div align=&quot;center&quot;&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;Tabla de Codigos de Colores &lt;br /&gt; &lt;/b&gt;&lt;/span&gt;&lt;/div&gt; &lt;p&gt; &lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;Captura:&lt;/b&gt;&lt;/span&gt; &lt;br /&gt; &lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/Tabla_de_colores2.png&quot; border=&quot;0&quot; alt=&quot;&quot;&gt; &lt;p&gt; &lt;a class=&quot;link&quot; href=&quot;http://file-sharing.clan.su/archivos_/Textos/DOC/Tabla_de_Cdigos_de_Colores.doc&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://file-sharing.clan.su/FORO/DOC-descarga.gif&quot; border=&quot;0&quot; alt=&quot;&quot;&gt;&lt;/a&gt;</content:encoded>
			<category>T. Para Internet o Webs</category>
			<dc:creator>unViciomás</dc:creator>
			<guid>https://file-sharing.clan.su/forum/69-1181-1</guid>
		</item>
		<item>
			<title>Tabla de colores Javascript</title>
			<link>https://file-sharing.clan.su/forum/69-1103-1</link>
			<pubDate>Thu, 13 Jan 2011 18:06:30 GMT</pubDate>
			<description>Foro: &lt;a href=&quot;https://file-sharing.clan.su/forum/69&quot;&gt;T. Para Internet o Webs&lt;/a&gt;&lt;br /&gt;Autor del tema: unViciomás&lt;br /&gt;Ultimo mensaje ha sido publicado por : WMaster&lt;br /&gt;Número de respuestas: 0</description>
			<content:encoded>&lt;div align=&quot;center&quot;&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;Tabla de colores Javascript&lt;/b&gt;&lt;/span&gt;&lt;/div&gt; &lt;p&gt; &lt;div align=&quot;center&quot;&gt;&lt;b&gt;Descarga la imagen con la Tabla de colores para que puedas cambiarle los colores al texto y a las celdas:&lt;/b&gt; &lt;p&gt; &lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/Tabla_de_Colores_Javascript.jpg&quot; border=&quot;0&quot; alt=&quot;&quot;&gt; &lt;p&gt; &lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;link:&lt;/b&gt;&lt;/span&gt; &lt;br /&gt; &lt;b&gt; &lt;br /&gt; &lt;a class=&quot;link&quot; target=&quot;_blank&quot; href=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/Tabla_de_Colores_Javascript.jpg&quot; rel=&quot;nofollow&quot;&gt;http://file-sharing.clan.su/FORO....ipt.jpg&lt;/a&gt; &lt;/b&gt;&lt;/div&gt;</content:encoded>
			<category>T. Para Internet o Webs</category>
			<dc:creator>unViciomás</dc:creator>
			<guid>https://file-sharing.clan.su/forum/69-1103-1</guid>
		</item>
		<item>
			<title>Modificación del tamaño de la imagen en HTML</title>
			<link>https://file-sharing.clan.su/forum/69-1091-1</link>
			<pubDate>Sun, 09 Jan 2011 20:43:45 GMT</pubDate>
			<description>Foro: &lt;a href=&quot;https://file-sharing.clan.su/forum/69&quot;&gt;T. Para Internet o Webs&lt;/a&gt;&lt;br /&gt;Autor del tema: unViciomás&lt;br /&gt;Ultimo mensaje ha sido publicado por : WMaster&lt;br /&gt;Número de respuestas: 0</description>
			<content:encoded>&lt;div align=&quot;center&quot;&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;Modificación del tamaño de la imagen en HTML&lt;/b&gt;&lt;/span&gt;&lt;/div&gt; &lt;p&gt; Para modificar el tamaño de la imagen tenes que modificar &lt;b&gt;&lt;span style=&quot;color:red&quot;&gt;WIDTH=&quot;60&quot;&lt;/span&gt;&lt;/b&gt; &lt;b&gt;&lt;span style=&quot;color:red&quot;&gt;HEIGHT=&quot;60&quot;&lt;/span&gt;&lt;/b&gt; &lt;p&gt; &lt;b&gt;WIDTH significa ANCHO (de la imagen) &lt;br /&gt; HEIGHT significa ALTO (de la imagen)&lt;/b&gt; &lt;p&gt; &lt;b&gt;CODIGO:&lt;/b&gt; &lt;br /&gt; &lt;IMG SRC=&quot;&lt;span style=&quot;color:blue&quot;&gt;&lt;b&gt;http://file-sharing.clan.su/FORO/Capturas/Para_Peliculas/Repo_Men-Espaol_Latino-DVDRip-2010-.gif&lt;/b&gt;&lt;/span&gt;&quot; BORDER=0 &lt;span style=&quot;color:red&quot;&gt;&lt;b&gt;WIDTH=&quot;60&quot;&lt;/b&gt;&lt;/span&gt; &lt;span style=&quot;color:red&quot;&gt;&lt;b&gt;HEIGHT=&quot;60&quot;&lt;/b&gt;&lt;/span&gt; ALT=&quot;Imagen de una Pelicula&quot;&gt;</content:encoded>
			<category>T. Para Internet o Webs</category>
			<dc:creator>unViciomás</dc:creator>
			<guid>https://file-sharing.clan.su/forum/69-1091-1</guid>
		</item>
		<item>
			<title>Mensajes en Javascript</title>
			<link>https://file-sharing.clan.su/forum/69-1085-1</link>
			<pubDate>Sun, 09 Jan 2011 03:43:31 GMT</pubDate>
			<description>Foro: &lt;a href=&quot;https://file-sharing.clan.su/forum/69&quot;&gt;T. Para Internet o Webs&lt;/a&gt;&lt;br /&gt;Autor del tema: unViciomás&lt;br /&gt;Ultimo mensaje ha sido publicado por : WMaster&lt;br /&gt;Número de respuestas: 0</description>
			<content:encoded>&lt;div align=&quot;center&quot;&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;En javascript hay tres tipos de mensajes:&lt;/b&gt;&lt;/span&gt;&lt;/div&gt; &lt;p&gt; &lt;span style=&quot;color:red&quot;&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;1)&lt;/b&gt;&lt;/span&gt;&lt;/span&gt; &lt;span style=&quot;color:blue&quot;&gt;&lt;b&gt;alert(&quot;mensaje&quot;)&lt;/b&gt;&lt;/span&gt; &lt;br /&gt; &lt;b&gt;CODIGO:&lt;/b&gt; &lt;br /&gt; &lt;textarea name=&quot;comentario&quot; rows=&quot;4&quot; cols=&quot;50&quot;&gt;&lt;script language=&quot;JavaScript&quot;&gt;alert(&quot;mensaje&quot;);&lt;/script&gt;&lt;/textarea&gt; &lt;p&gt; Unicamente es informativo: &lt;br /&gt; &lt;b&gt;Ej: alert(&quot;hola&quot;);&lt;/b&gt; &lt;p&gt; &lt;span style=&quot;color:red&quot;&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;2)&lt;/b&gt;&lt;/span&gt;&lt;/span&gt; &lt;span style=&quot;color:blue&quot;&gt;&lt;b&gt;confirm (&quot;holaaaaaaa&quot;)&lt;/b&gt;&lt;/span&gt; &lt;br /&gt; &lt;b&gt;CODIGO:&lt;/b&gt; &lt;br /&gt; &lt;textarea name=&quot;comentario&quot; rows=&quot;4&quot; cols=&quot;50&quot;&gt;&lt;script language=&quot;JavaScript&quot;&gt;confirm (&quot;holaaaaaaa&quot;);&lt;/script&gt;&lt;/textarea&gt; &lt;p&gt; Nos muestra un dialogo solicitando una respuesta &lt;b&gt;Aceptar/Cancelar&lt;/b&gt; por ejemplo si hay que borrar un archivo. El msg no puede contener html si das aceptar la función devuelve true sino false. &lt;br /&gt; &lt;b&gt;EJ: confirm(&quot;Desea realizar la operacion&quot;);&lt;/b&gt; &lt;p&gt; &lt;span style=&quot;color:red&quot;&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;3)&lt;/b&gt;&lt;/span&gt;&lt;/span&gt; &lt;span style=&quot;color:blue&quot;&gt;&lt;b&gt;prompt (&quot;mensaje&quot;)&lt;/b&gt;&lt;/span&gt; &lt;br /&gt; &lt;b&gt;CODIGO:&lt;/b&gt; &lt;br /&gt; &lt;textarea name=&quot;comentario&quot; rows=&quot;4&quot; cols=&quot;50&quot;&gt;&lt;script language=&quot;JavaScript&quot;&gt;prompt (&quot;mensaje&quot;);&lt;/script&gt;&lt;/textarea&gt; &lt;p&gt; Te muestra una ventana solicitando una cadena de texto.La funcion devuelve la cadena que has introducido. &lt;p&gt; &lt;b&gt;EJ: prompt (&quot;Dime tu nombre&quot;);&lt;/b&gt; &lt;p&gt; &lt;hr&gt; &lt;p&gt; &lt;div align=&quot;center&quot;&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;Otras formas de Poner mensaje es con Botones&lt;/b&gt;&lt;/span&gt;&lt;/div&gt; &lt;p&gt; &lt;form METHOD=&quot;POST&quot;&gt;&lt;div align=&quot;center&quot;&gt;&lt;p&gt;&lt;input LANGUAGE=&quot;JavaScript&quot; TYPE=&quot;button&quot; VALUE=&quot;Ver mensaje&quot; ONCLICK=&quot;window.alert(&apos; Aqui el texto a visualizar By File-Sharing &apos;)&quot; NAME=&quot;Boton1&quot;&gt;&lt;/p&gt;&lt;/div&gt;&lt;/form&gt;&lt;noscript&gt;&lt;a href=&quot;http://file-sharing.clan.su&quot;&gt;By File Sharing&lt;/a&gt;&lt;/noscript&gt; &lt;p&gt; &lt;b&gt;CODIGO:&lt;/b&gt; &lt;br /&gt; &lt;textarea name=&quot;comentario&quot; rows=&quot;7&quot; cols=&quot;60&quot;&gt;&lt;form METHOD=&quot;POST&quot;&gt; &lt;br /&gt; &lt;div align=&quot;center&quot;&gt;&lt;p&gt;&lt;input LANGUAGE=&quot;JavaScript&quot; TYPE=&quot;button&quot; &lt;br /&gt; VALUE=&quot;Ver mensaje&quot; ONCLICK=&quot;window.alert(&apos; Aqui el texto a visualizar By File-Sharing &apos;)&quot; NAME=&quot;Boton1&quot;&gt; &lt;/p&gt;&lt;/div&gt;&lt;/form&gt;&lt;noscript&gt;&lt;a href=&quot;http://file-sharing.clan.su&quot;&gt;By File Sharing&lt;/a&gt;&lt;/noscript&gt;&lt;/textarea&gt; &lt;p&gt; &lt;div align=&quot;center&quot;&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;El mismo boton anterior pero a nuestro gusto&lt;/b&gt;&lt;/span&gt; :okey:&lt;/div&gt; &lt;p&gt; &lt;form METHOD=&quot;POST&quot;&gt;&lt;div align=&quot;center&quot;&gt;&lt;p&gt;&lt;input LANGUAGE=&quot;JavaScript&quot; TYPE=&quot;IMAGE&quot; VALUE=&quot;Ver mensaje&quot; ONCLICK=&quot;window.alert(&apos; Aqui el texto a visualizar By File-Sharing &apos;)&quot; NAME=&quot;Boton1&quot; SRC=&quot;http://fotolog.ucoz.com/_nw/0/77244627.gif&quot; border=&quot;0&quot; width=&quot;n:&quot; height=&quot;n:&quot;&gt; &lt;/p&gt;&lt;/div&gt;&lt;/form&gt;&lt;noscript&gt;&lt;a href=&quot;http://file-sharing.clan.su&quot;&gt;By File Sharing&lt;/a&gt;&lt;/noscript&gt; &lt;p&gt; &lt;b&gt;CODIGO:&lt;/b&gt; &lt;br /&gt; &lt;textarea name=&quot;comentario&quot; rows=&quot;7&quot; cols=&quot;60&quot;&gt;&lt;form METHOD=&quot;POST&quot;&gt;&lt;div align=&quot;center&quot;&gt;&lt;p&gt;&lt;input LANGUAGE=&quot;JavaScript&quot; TYPE=&quot;IMAGE&quot; VALUE=&quot;Ver mensaje&quot; ONCLICK=&quot;window.alert(&apos; Aqui el texto a visualizar By File-Sharing&apos;)&quot; NAME=&quot;Boton1&quot; &lt;br /&gt; SRC=&quot;URL-DE-IMAGEN&quot; border=&quot;0&quot; width=&quot;n:&quot; height=&quot;n:&quot;&gt; &lt;/p&gt;&lt;/div&gt;&lt;/form&gt;&lt;noscript&gt;&lt;a href=&quot;http://file-sharing.clan.su&quot;&gt;By File Sharing&lt;/a&gt;&lt;/noscript&gt;&lt;/textarea&gt;</content:encoded>
			<category>T. Para Internet o Webs</category>
			<dc:creator>unViciomás</dc:creator>
			<guid>https://file-sharing.clan.su/forum/69-1085-1</guid>
		</item>
		<item>
			<title>Botones de Twitter para tu Web</title>
			<link>https://file-sharing.clan.su/forum/69-1065-1</link>
			<pubDate>Sat, 08 Jan 2011 01:05:12 GMT</pubDate>
			<description>Foro: &lt;a href=&quot;https://file-sharing.clan.su/forum/69&quot;&gt;T. Para Internet o Webs&lt;/a&gt;&lt;br /&gt;Descripción del tema: Botones de Twitter&lt;br /&gt;Autor del tema: unViciomás&lt;br /&gt;Ultimo mensaje ha sido publicado por : WMaster&lt;br /&gt;Número de respuestas: 1</description>
			<content:encoded>&lt;div&gt;&lt;span style=&quot;font-family: Arial; font-size: 12pt; &quot;&gt; &lt;div align=&quot;center&quot;&gt;&lt;img src=&quot;http://botones.gigatwitter.com/images/cabecera.gif&quot; border=&quot;0&quot; alt=&quot;&quot;&gt;&lt;/div&gt; &lt;p&gt; &lt;b&gt;¿Cómo funcionan los botones de Twitter?&lt;/b&gt; &lt;br /&gt; Simplemente pon el nombre de tu cuenta de Twitter a continuación y podrás copiar (&lt;b&gt;Ctrl+C&lt;/b&gt;) y pegar el código de cualquier botón en tu web, blog, firma de foro, etc.. Así cuando pulsen en el, irán directamente a tu cuenta de Twitter y podrán convertirse en tus followers! Eso es todo, ¡felices Twitteos! &lt;br /&gt; &lt;hr&gt; &lt;br /&gt; Tienes que cambiar en el codigo donde dice &lt;span style=&quot;font-size:14pt;&quot;&gt;http://twitter.com/&lt;span style=&quot;color:red&quot;&gt;&lt;b&gt;TUCUENTA&lt;/b&gt;&lt;/span&gt;&lt;/span&gt; hay tenes que poner el Nombre de tu Cuenta. &lt;br /&gt; &lt;hr&gt; &lt;p&gt; &lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/File-Sharing_twitter-6a.png&quot; border=&quot;0&quot; alt=&quot;&quot;&gt; &lt;br /&gt; &lt;b&gt;CODIGO:&lt;/b&gt; &lt;br /&gt; &lt;textarea name=&quot;comentario&quot; rows=&quot;10&quot; cols=&quot;30&quot;&gt;&lt;a href=&quot;http://twitter.com/TUCUENTA&quot; title=&quot;Sigueme en Twitter&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/File-Sharing_twitter-6a.png&quot; border=&quot;0&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;noscript&gt;&lt;a href=&quot;http://file-sharing.clan.su&quot;&gt;by File Sharing&lt;/a&gt;&lt;/noscript&gt;&lt;/textarea&gt; &lt;p&gt; &lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/File-Sharing_twitter-6c.png&quot; border=&quot;0&quot; alt=&quot;&quot;&gt; &lt;br /&gt; &lt;b&gt;CODIGO:&lt;/b&gt; &lt;br /&gt; &lt;textarea name=&quot;comentario&quot; rows=&quot;10&quot; cols=&quot;30&quot;&gt;&lt;a href=&quot;http://twitter.com/TUCUENTA&quot; title=&quot;Sigueme en Twitter&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/File-Sharing_twitter-6c.png&quot; border=&quot;0&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;noscript&gt;&lt;a href=&quot;http://file-sharing.clan.su&quot;&gt;by File Sharing&lt;/a&gt;&lt;/noscript&gt;&lt;/textarea&gt; &lt;p&gt; &lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/File-Sharing_twitter-6b.png&quot; border=&quot;0&quot; alt=&quot;&quot;&gt; &lt;br /&gt; &lt;b&gt;CODIGO:&lt;/b&gt; &lt;br /&gt; &lt;textarea name=&quot;comentario&quot; rows=&quot;10&quot; cols=&quot;30&quot;&gt;&lt;a href=&quot;http://twitter.com/TUCUENTA&quot; title=&quot;Sigueme en Twitter&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/File-Sharing_twitter-6b.png&quot; border=&quot;0&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;noscript&gt;&lt;a href=&quot;http://file-sharing.clan.su&quot;&gt;by File Sharing&lt;/a&gt;&lt;/noscript&gt;&lt;/textarea&gt; &lt;p&gt; &lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/twitter-6d.png&quot; border=&quot;0&quot; alt=&quot;&quot;&gt; &lt;br /&gt; &lt;b&gt;CODIGO:&lt;/b&gt; &lt;br /&gt; &lt;textarea name=&quot;comentario&quot; rows=&quot;10&quot; cols=&quot;30&quot;&gt;&lt;a href=&quot;http://twitter.com/TUCUENTA&quot; title=&quot;Sigueme en Twitter&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/twitter-6d.png&quot; border=&quot;0&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;noscript&gt;&lt;a href=&quot;http://file-sharing.clan.su&quot;&gt;by File Sharing&lt;/a&gt;&lt;/noscript&gt;&lt;/textarea&gt; &lt;p&gt; &lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/twitter-7b.png&quot; border=&quot;0&quot; alt=&quot;&quot;&gt; &lt;br /&gt; &lt;b&gt;CODIGO:&lt;/b&gt; &lt;br /&gt; &lt;textarea name=&quot;comentario&quot; rows=&quot;10&quot; cols=&quot;30&quot;&gt;&lt;a href=&quot;http://twitter.com/TUCUENTA&quot; title=&quot;Sigueme en Twitter&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/twitter-7b.png&quot; border=&quot;0&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;noscript&gt;&lt;a href=&quot;http://file-sharing.clan.su&quot;&gt;by File Sharing&lt;/a&gt;&lt;/noscript&gt;&lt;/textarea&gt; &lt;p&gt; &lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/twitter-7a.png&quot; border=&quot;0&quot; alt=&quot;&quot;&gt; &lt;br /&gt; &lt;b&gt;CODIGO:&lt;/b&gt; &lt;br /&gt; &lt;textarea name=&quot;comentario&quot; rows=&quot;10&quot; cols=&quot;30&quot;&gt;&lt;a href=&quot;http://twitter.com/TUCUENTA&quot; title=&quot;Sigueme en Twitter&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/twitter-7a.png&quot; border=&quot;0&quot; alt=&quot;&quot; /&gt;&lt;/a&gt; &lt;noscript&gt;&lt;a href=&quot;http://file-sharing.clan.su&quot;&gt;by File Sharing&lt;/a&gt;&lt;/noscript&gt;&lt;/textarea&gt; &lt;p&gt; &lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/twitter-8b.png&quot; border=&quot;0&quot; alt=&quot;&quot;&gt; &lt;br /&gt; &lt;b&gt;CODIGO:&lt;/b&gt; &lt;br /&gt; &lt;textarea name=&quot;comentario&quot; rows=&quot;10&quot; cols=&quot;30&quot;&gt;&lt;a href=&quot;http://twitter.com/TUCUENTA&quot; title=&quot;Sigueme en Twitter&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/twitter-8b.png&quot; border=&quot;0&quot; alt=&quot;&quot; /&gt;&lt;/a&gt; &lt;noscript&gt;&lt;a href=&quot;http://file-sharing.clan.su&quot;&gt;by File Sharing&lt;/a&gt;&lt;/noscript&gt;&lt;/textarea&gt; &lt;p&gt; &lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/twitter-7d.png&quot; border=&quot;0&quot; alt=&quot;&quot;&gt; &lt;br /&gt; &lt;b&gt;CODIGO:&lt;/b&gt; &lt;br /&gt; &lt;textarea name=&quot;comentario&quot; rows=&quot;10&quot; cols=&quot;30&quot;&gt;&lt;a href=&quot;http://twitter.com/TUCUENTA&quot; title=&quot;Sigueme en Twitter&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/twitter-7d.png&quot; border=&quot;0&quot; alt=&quot;&quot; /&gt;&lt;/a&gt; &lt;noscript&gt;&lt;a href=&quot;http://file-sharing.clan.su&quot;&gt;by File Sharing&lt;/a&gt;&lt;/noscript&gt;&lt;/textarea&gt; &lt;p&gt; &lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/twitter-8a.png&quot; border=&quot;0&quot; alt=&quot;&quot;&gt; &lt;br /&gt; &lt;b&gt;CODIGO:&lt;/b&gt; &lt;br /&gt; &lt;textarea name=&quot;comentario&quot; rows=&quot;10&quot; cols=&quot;30&quot;&gt;&lt;a href=&quot;http://twitter.com/TUCUENTA&quot; title=&quot;Sigueme en Twitter&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/twitter-8a.png&quot; border=&quot;0&quot; alt=&quot;&quot; /&gt;&lt;/a&gt; &lt;noscript&gt;&lt;a href=&quot;http://file-sharing.clan.su&quot;&gt;by File Sharing&lt;/a&gt;&lt;/noscript&gt;&lt;/textarea&gt; &lt;p&gt; &lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/twitter-8c.png&quot; border=&quot;0&quot; alt=&quot;&quot;&gt; &lt;br /&gt; &lt;b&gt;CODIGO:&lt;/b&gt; &lt;br /&gt; &lt;textarea name=&quot;comentario&quot; rows=&quot;10&quot; cols=&quot;30&quot;&gt;&lt;a href=&quot;http://twitter.com/TUCUENTA&quot; title=&quot;Seguime en Twitter&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/twitter-8c.png&quot; border=&quot;0&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;noscript&gt;&lt;a href=&quot;http://file-sharing.clan.su&quot;&gt;by File Sharing&lt;/a&gt;&lt;/noscript&gt;&lt;/textarea&gt; &lt;p&gt; &lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/twitter-9a.png&quot; border=&quot;0&quot; alt=&quot;&quot;&gt; &lt;br /&gt; &lt;b&gt;CODIGO:&lt;/b&gt; &lt;br /&gt; &lt;textarea name=&quot;comentario&quot; rows=&quot;10&quot; cols=&quot;30&quot;&gt;&lt;a href=&quot;http://twitter.com/TUCUENTA&quot; title=&quot;Seguime en Twitter&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/twitter-9a.png&quot; border=&quot;0&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;noscript&gt;&lt;a href=&quot;http://file-sharing.clan.su&quot;&gt;by File Sharing&lt;/a&gt;&lt;/noscript&gt;&lt;/textarea&gt; &lt;p&gt; &lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/twitter-8d.png&quot; border=&quot;0&quot; alt=&quot;&quot;&gt; &lt;br /&gt; &lt;b&gt;CODIGO:&lt;/b&gt; &lt;br /&gt; &lt;textarea name=&quot;comentario&quot; rows=&quot;10&quot; cols=&quot;30&quot;&gt;&lt;a href=&quot;http://twitter.com/TUCUENTA&quot; title=&quot;Seguime en Twitter&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/twitter-8d.png&quot; border=&quot;0&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;noscript&gt;&lt;a href=&quot;http://file-sharing.clan.su&quot;&gt;by File Sharing&lt;/a&gt;&lt;/noscript&gt;&lt;/textarea&gt; &lt;p&gt; &lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/twitter-9d.png&quot; border=&quot;0&quot; alt=&quot;&quot;&gt; &lt;br /&gt; &lt;b&gt;CODIGO:&lt;/b&gt; &lt;br /&gt; &lt;textarea name=&quot;comentario&quot; rows=&quot;10&quot; cols=&quot;30&quot;&gt;&lt;a href=&quot;http://twitter.com/TUCUENTA&quot; title=&quot;Seguime en Twitter&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/twitter-9d.png&quot; border=&quot;0&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;noscript&gt;&lt;a href=&quot;http://file-sharing.clan.su&quot;&gt;by File Sharing&lt;/a&gt;&lt;/noscript&gt;&lt;/textarea&gt; &lt;p&gt; &lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/twitter-10c.png&quot; border=&quot;0&quot; alt=&quot;&quot;&gt; &lt;br /&gt; &lt;b&gt;CODIGO:&lt;/b&gt; &lt;br /&gt; &lt;textarea name=&quot;comentario&quot; rows=&quot;10&quot; cols=&quot;30&quot;&gt;&lt;a href=&quot;http://twitter.com/TUCUENTA&quot; title=&quot;Seguime en Twitter&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/twitter-10c.png&quot; border=&quot;0&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;noscript&gt;&lt;a href=&quot;http://file-sharing.clan.su&quot;&gt;by File Sharing&lt;/a&gt;&lt;/noscript&gt;&lt;/textarea&gt; &lt;p&gt; &lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/twitter-10a.png&quot; border=&quot;0&quot; alt=&quot;&quot;&gt; &lt;br /&gt; &lt;b&gt;CODIGO:&lt;/b&gt; &lt;br /&gt; &lt;textarea name=&quot;comentario&quot; rows=&quot;10&quot; cols=&quot;30&quot;&gt;&lt;a href=&quot;http://twitter.com/TUCUENTA&quot; title=&quot;Seguime en Twitter&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/twitter-10a.png&quot; border=&quot;0&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;noscript&gt;&lt;a href=&quot;http://file-sharing.clan.su&quot;&gt;by File Sharing&lt;/a&gt;&lt;/noscript&gt;&lt;/textarea&gt; &lt;p&gt; &lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/boton_41.png&quot; border=&quot;0&quot; alt=&quot;&quot;&gt; &lt;br /&gt; &lt;b&gt;CODIGO:&lt;/b&gt; &lt;br /&gt; &lt;textarea name=&quot;comentario&quot; rows=&quot;10&quot; cols=&quot;30&quot;&gt;&lt;a href=&quot;http://twitter.com/TUCUENTA&quot; title=&quot;Seguime en Twitter&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/boton_41.png&quot; border=&quot;0&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;noscript&gt;&lt;a href=&quot;http://file-sharing.clan.su&quot;&gt;by File Sharing&lt;/a&gt;&lt;/noscript&gt;&lt;/textarea&gt; &lt;p&gt; &lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/boton_43.png&quot; border=&quot;0&quot; alt=&quot;&quot;&gt; &lt;br /&gt; &lt;b&gt;CODIGO:&lt;/b&gt; &lt;br /&gt; &lt;textarea name=&quot;comentario&quot; rows=&quot;10&quot; cols=&quot;30&quot;&gt;&lt;a href=&quot;http://twitter.com/TUCUENTA&quot; title=&quot;Seguime en Twitter&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/boton_43.png&quot; border=&quot;0&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;noscript&gt;&lt;a href=&quot;http://file-sharing.clan.su&quot;&gt;by File Sharing&lt;/a&gt;&lt;/noscript&gt;&lt;/textarea&gt; &lt;p&gt; &lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/boton_42.png&quot; border=&quot;0&quot; alt=&quot;&quot;&gt; &lt;br /&gt; &lt;b&gt;CODIGO:&lt;/b&gt; &lt;br /&gt; &lt;textarea name=&quot;comentario&quot; rows=&quot;10&quot; cols=&quot;30&quot;&gt;&lt;a href=&quot;http://twitter.com/TUCUENTA&quot; title=&quot;Seguime en Twitter&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/boton_42.png&quot; border=&quot;0&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;noscript&gt;&lt;a href=&quot;http://file-sharing.clan.su&quot;&gt;by File Sharing&lt;/a&gt;&lt;/noscript&gt;&lt;/textarea&gt; &lt;p&gt; &lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/twitter-2d.png&quot; border=&quot;0&quot; alt=&quot;&quot;&gt; &lt;br /&gt; &lt;b&gt;CODIGO:&lt;/b&gt; &lt;br /&gt; &lt;textarea name=&quot;comentario&quot; rows=&quot;10&quot; cols=&quot;30&quot;&gt;&lt;a href=&quot;http://twitter.com/TUCUENTA&quot; title=&quot;Seguime en Twitter&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/twitter-2d.png&quot; border=&quot;0&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;noscript&gt;&lt;a href=&quot;http://file-sharing.clan.su&quot;&gt;by File Sharing&lt;/a&gt;&lt;/noscript&gt;&lt;/textarea&gt; &lt;p&gt; &lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/twitter-3a.png&quot; border=&quot;0&quot; alt=&quot;&quot;&gt; &lt;br /&gt; &lt;b&gt;CODIGO:&lt;/b&gt; &lt;br /&gt; &lt;textarea name=&quot;comentario&quot; rows=&quot;10&quot; cols=&quot;30&quot;&gt;&lt;a href=&quot;http://twitter.com/TUCUENTA&quot; title=&quot;Seguime en Twitter&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/twitter-3a.png&quot; border=&quot;0&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;noscript&gt;&lt;a href=&quot;http://file-sharing.clan.su&quot;&gt;by File Sharing&lt;/a&gt;&lt;/noscript&gt;&lt;/textarea&gt; &lt;p&gt; &lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/boton_44.png&quot; border=&quot;0&quot; alt=&quot;&quot;&gt; &lt;br /&gt; &lt;b&gt;CODIGO:&lt;/b&gt; &lt;br /&gt; &lt;textarea name=&quot;comentario&quot; rows=&quot;10&quot; cols=&quot;30&quot;&gt;&lt;a href=&quot;http://twitter.com/TUCUENTA&quot; title=&quot;Seguime en Twitter&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/boton_44.png&quot; border=&quot;0&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;noscript&gt;&lt;a href=&quot;http://file-sharing.clan.su&quot;&gt;by File Sharing&lt;/a&gt;&lt;/noscript&gt;&lt;/textarea&gt; &lt;p&gt; &lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/twitter-3b.png&quot; border=&quot;0&quot; alt=&quot;&quot;&gt; &lt;br /&gt; &lt;b&gt;CODIGO:&lt;/b&gt; &lt;br /&gt; &lt;textarea name=&quot;comentario&quot; rows=&quot;10&quot; cols=&quot;30&quot;&gt;&lt;a href=&quot;http://twitter.com/TUCUENTA&quot; title=&quot;Seguime en Twitter&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/twitter-3b.png&quot; border=&quot;0&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;noscript&gt;&lt;a href=&quot;http://file-sharing.clan.su&quot;&gt;by File Sharing&lt;/a&gt;&lt;/noscript&gt;&lt;/textarea&gt; &lt;p&gt; &lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/twitter-4a.png&quot; border=&quot;0&quot; alt=&quot;&quot;&gt; &lt;br /&gt; &lt;b&gt;CODIGO:&lt;/b&gt; &lt;br /&gt; &lt;textarea name=&quot;comentario&quot; rows=&quot;10&quot; cols=&quot;30&quot;&gt;&lt;a href=&quot;http://twitter.com/TUCUENTA&quot; title=&quot;Seguime en Twitter&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/twitter-4a.png&quot; border=&quot;0&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;noscript&gt;&lt;a href=&quot;http://file-sharing.clan.su&quot;&gt;by File Sharing&lt;/a&gt;&lt;/noscript&gt;&lt;/textarea&gt; &lt;p&gt; &lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/twitter-3d.png&quot; border=&quot;0&quot; alt=&quot;&quot;&gt; &lt;br /&gt; &lt;b&gt;CODIGO:&lt;/b&gt; &lt;br /&gt; &lt;textarea name=&quot;comentario&quot; rows=&quot;10&quot; cols=&quot;30&quot;&gt;&lt;a href=&quot;http://twitter.com/TUCUENTA&quot; title=&quot;Seguime en Twitter&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/twitter-3d.png&quot; border=&quot;0&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;noscript&gt;&lt;a href=&quot;http://file-sharing.clan.su&quot;&gt;by File Sharing&lt;/a&gt;&lt;/noscript&gt;&lt;/textarea&gt; &lt;p&gt; &lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/twitter-5a.png&quot; border=&quot;0&quot; alt=&quot;&quot;&gt; &lt;br /&gt; &lt;b&gt;CODIGO:&lt;/b&gt; &lt;br /&gt; &lt;textarea name=&quot;comentario&quot; rows=&quot;10&quot; cols=&quot;30&quot;&gt;&lt;a href=&quot;http://twitter.com/TUCUENTA&quot; title=&quot;Seguime en Twitter&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/twitter-5a.png&quot; border=&quot;0&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;noscript&gt;&lt;a href=&quot;http://file-sharing.clan.su&quot;&gt;by File Sharing&lt;/a&gt;&lt;/noscript&gt;&lt;/textarea&gt; &lt;p&gt; &lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/twitter-5d.png&quot; border=&quot;0&quot; alt=&quot;&quot;&gt; &lt;br /&gt; &lt;b&gt;CODIGO:&lt;/b&gt; &lt;br /&gt; &lt;textarea name=&quot;comentario&quot; rows=&quot;10&quot; cols=&quot;30&quot;&gt;&lt;a href=&quot;http://twitter.com/TUCUENTA&quot; title=&quot;Seguime en Twitter&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/twitter-5d.png&quot; border=&quot;0&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;noscript&gt;&lt;a href=&quot;http://file-sharing.clan.su&quot;&gt;by File Sharing&lt;/a&gt;&lt;/noscript&gt;&lt;/textarea&gt; &lt;p&gt; &lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/twitter-5b.png&quot; border=&quot;0&quot; alt=&quot;&quot;&gt; &lt;br /&gt; &lt;b&gt;CODIGO:&lt;/b&gt; &lt;br /&gt; &lt;textarea name=&quot;comentario&quot; rows=&quot;10&quot; cols=&quot;30&quot;&gt;&lt;a href=&quot;http://twitter.com/TUCUENTA&quot; title=&quot;Seguime en Twitter&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/twitter/twitter-5b.png&quot; border=&quot;0&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;noscript&gt;&lt;a href=&quot;http://file-sharing.clan.su&quot;&gt;by File Sharing&lt;/a&gt;&lt;/noscript&gt;&lt;/textarea&gt; &lt;/span&gt;&lt;/div&gt;&lt;/span&gt;</content:encoded>
			<category>T. Para Internet o Webs</category>
			<dc:creator>unViciomás</dc:creator>
			<guid>https://file-sharing.clan.su/forum/69-1065-1</guid>
		</item>
		<item>
			<title>Como activar la tienda online de paginas uCoz Tutorial</title>
			<link>https://file-sharing.clan.su/forum/69-1028-1</link>
			<pubDate>Wed, 05 Jan 2011 05:36:06 GMT</pubDate>
			<description>Foro: &lt;a href=&quot;https://file-sharing.clan.su/forum/69&quot;&gt;T. Para Internet o Webs&lt;/a&gt;&lt;br /&gt;Autor del tema: unViciomás&lt;br /&gt;Ultimo mensaje ha sido publicado por : WMaster&lt;br /&gt;Número de respuestas: 0</description>
			<content:encoded>&lt;div style=&quot;text-align: center&quot;&gt;&lt;b&gt;&lt;span style=&quot;color: red;&quot;&gt;TIENDA ONLINE. TUTORIAL DE LA COSA&lt;/span&gt;&lt;/b&gt;&lt;/div&gt; &lt;br /&gt; &lt;br /&gt;&lt;img alt=&quot;5b415a0a74765006f122f979f487f751&quot; src=&quot;http://o2.t26.net//images/space.gif#12786610971&quot; /&gt; &lt;br /&gt; &lt;br /&gt;&lt;div style=&quot;text-align: center&quot;&gt;&lt;b&gt;Aquí quiero tratar de explicar lo esencial del nuevo módulo que apareción en sus Paneles de Control: “Tienda online”. Seguro estoy de que muchos de Uds tienen ganas ya de ir utilizando el módulo, comprar/vender productos y cobrar lana. Así que, que Dios me ayude. Comencemos. &lt;br /&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt;Primero tenemos que activar el módulo. Hacemos clic en “Inactivos” y vemos los módulos que todavía no están activados: &lt;br /&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;img class=&quot;imagen&quot; border=&quot;0&quot; src=&quot;http://foro.ucoz.es/Tienda_online/tienda-1.png&quot; /&gt;– &amp;gt;&lt;img class=&quot;imagen&quot; border=&quot;0&quot; src=&quot;http://foro.ucoz.es/Tienda_online/tienda-2.png&quot; /&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt;Al terminar de crear el módulo, se nos aparece un anuncio. Aquí hemos de introducir el código de activación (se compone de unas cuantas decenas de caracteres): &lt;br /&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;img class=&quot;imagen&quot; border=&quot;0&quot; src=&quot;http://foro.ucoz.es/Tienda_online/tienda-3.png&quot; /&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt;Y como resultado tenemos un módulo activado: &lt;br /&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;img class=&quot;imagen&quot; border=&quot;0&quot; src=&quot;http://foro.ucoz.es/Tienda_online/tienda-4.png&quot; /&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt;¡Uf! ¡Me he cansado ya de ir escribiendo tanto! Y ahora lo más importante e interesante &lt;br /&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;img class=&quot;imagen&quot; border=&quot;0&quot; src=&quot;http://foro.ucoz.es/Tienda_online/tienda-5.png&quot; /&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt;------------------------------------------------------------------------------------------------------------------------------------------- ------------------ &lt;br /&gt; &lt;br /&gt;&lt;span style=&quot;color: blue;&quot;&gt;Inicio » Tienda online » Configuraciones del módulo&lt;/span&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;img class=&quot;imagen&quot; border=&quot;0&quot; src=&quot;http://foro.ucoz.es/Tienda_online/tienda-6.png&quot; /&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;span style=&quot;color: red;&quot;&gt;1.&lt;/span&gt; Se determina el número de productos que se expondrá en una página en la categoría, los demás productos se transfieren a otra página. &lt;br /&gt; &lt;br /&gt;&lt;span style=&quot;color: red;&quot;&gt;2.&lt;/span&gt; Bueno, aquí todito está bien claro. Con el valor configurado – 2. Con el valor de 3 – los materiales se expondrá respectivamente en forma de 3 columnas, valor equivale a 4 – 4 columnas etc. (este es puro ejemplo pa’que tengan idea acerca de esta opción, no más). &lt;br /&gt; &lt;br /&gt;&lt;span style=&quot;color: red;&quot;&gt;3.&lt;/span&gt; Aquí se configura el ancho de cada columna. El tamaño se define en Px. Si en el punto anterior se especifica “Auto”, el número de columnas se determinará según su ancho, o sea, a base del principio “cuanto quepa”. &lt;br /&gt; &lt;br /&gt;&lt;span style=&quot;color: red;&quot;&gt;4.&lt;/span&gt; En el screenshot se muestra qué es el divisor. &lt;br /&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;img class=&quot;imagen&quot; border=&quot;0&quot; src=&quot;http://foro.ucoz.es/Tienda_online/tienda-9.png&quot; /&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;span style=&quot;color: red;&quot;&gt;5.&lt;/span&gt; Al activar esta opción, los usuarios podrán escribir sus comentarios en la página del material. &lt;br /&gt; &lt;br /&gt;&lt;span style=&quot;color: red;&quot;&gt;6.&lt;/span&gt; Es una especie del sistema de descuentos: un usuario que ha comprado un o varios productos para una cierta suma, podrá comprar los productos posteriores con un descuento ya. &lt;br /&gt; &lt;br /&gt;&lt;span style=&quot;color: red;&quot;&gt;7.&lt;/span&gt; Es una matriz que determina la siguiente cosa: después de qué suma y qué descuento será válida, o sea, p.e.: después de comprar productos para 50$, para las compras posteriores se prevé un descuento. La configuración del valor de la matriz se activa al hacer clic sobre esta palabra. &lt;br /&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;img class=&quot;imagen&quot; border=&quot;0&quot; src=&quot;http://foro.ucoz.es/Tienda_online/tienda-10.png&quot; /&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;span style=&quot;color: red;&quot;&gt;8.&lt;/span&gt; Iconos de las imágenes hay sólo a condición de que un producto tenga varias imágenes. Se exponen éstas en la página del material bajo la imagen principal. &lt;br /&gt; &lt;br /&gt;9. La imagen de un producto se reducirá hasta este tamaño y se expondrá en las páginas del módulo. &lt;br /&gt; &lt;br /&gt;&lt;span style=&quot;color: red;&quot;&gt;10.&lt;/span&gt; Si elegimos “Insertar” – la imagen se reducirá proporcionalmente; en caso de “Recortar” la imagen será cortada hasta las dimensiones indicadas sin reducción. &lt;br /&gt; &lt;br /&gt;&lt;span style=&quot;color: red;&quot;&gt;11.&lt;/span&gt; Si una imagen contiene los sectores transparentes, mediante esa opción puedes configurar el color de estos sectores después de la reducción de la imagen. Es útil la opción: supongamos que el fondo de tu sitio es gris, en la opción eliges el color que también es gris. En resultado obtienes una vista previa de la imagen como si fuera ésta fuera transparente. &lt;br /&gt; &lt;br /&gt;&lt;span style=&quot;color: red;&quot;&gt;12.&lt;/span&gt; a condición de activada esta opción, podrás decidir y configurar el tamaño hasta el cual se reducirán las imágenes demasiado grandes. &lt;br /&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;img class=&quot;imagen&quot; border=&quot;0&quot; src=&quot;http://foro.ucoz.es/Tienda_online/tienda-11.png&quot; /&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;span style=&quot;color: red;&quot;&gt;13., 14., 15.&lt;/span&gt; En este caso N y M – son 2 y 10, si N equivale a M, el valor de N y M determinarán el número de materiales a estar expuestos en la lista de últimos productos añadidos (Novedades), sin la selección del producto de forma aleatoria, o sea, en el primer puesto está recién añadido producto, en el segundo puesto – el producto que se ha añadidos después del primer producto etc. Si N no equivale a M, los materiales se expondrán de forma aleatoria, N – es el número de materiales expuestos, M determina el número de materiales recién añadidos que se expondrán de forma aleatoria, o sea, si hay 2 de 10, se expondrán 2 materiales y durante la actualización de la página éstas se reemplazarán por cualquieras otros 2 de los 10 recién añadidos. &lt;br /&gt; &lt;br /&gt;Para los puntos &lt;span style=&quot;color: red;&quot;&gt;14 y 15&lt;/span&gt; la cosa será la misma. &lt;br /&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;img class=&quot;imagen&quot; border=&quot;0&quot; src=&quot;http://foro.ucoz.es/Tienda_online/tienda-12.png&quot; /&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;span style=&quot;color: red;&quot;&gt;16., 17.&lt;/span&gt; Los avisos (notificaciones) van a llegar a tu e-mail que has escrito en las configuraciones generales. &lt;br /&gt; &lt;br /&gt;&lt;span style=&quot;color: red;&quot;&gt;18.&lt;/span&gt;Esta plantilla es el tema del mensaje que va llegar al e-mail del usuario que ha comprado un producto. $SHOP_NAME$ es el nombre del módulo “tienda online”, se modifica aquí mismo, en las configuraciones del módulo (campo #1). &lt;br /&gt; &lt;br /&gt;&lt;span style=&quot;color: red;&quot;&gt;19.&lt;/span&gt;Ahora tenemos el valor “5” que quiere decir lo siguiente: el producto puede estar bajado por 5 personas de diferentes direcciones IP. &lt;br /&gt; &lt;br /&gt;&lt;span style=&quot;color: red;&quot;&gt;20.&lt;/span&gt; Aquí tenemos el valor “24”: un comprador puede bajar bajar un producto-archivo a lo largo de 24 horas. Después de bajar el archivo, el enlace será válida (efectiva) 5 minutos más. &lt;/b&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;b&gt;&lt;span style=&quot;color: blue;&quot;&gt;(CONTINUARÁ)&lt;/span&gt;&lt;/b&gt;&lt;/div&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt;</content:encoded>
			<category>T. Para Internet o Webs</category>
			<dc:creator>unViciomás</dc:creator>
			<guid>https://file-sharing.clan.su/forum/69-1028-1</guid>
		</item>
		<item>
			<title>Metodo Rapido Para Cifrar Textos: ROT-13</title>
			<link>https://file-sharing.clan.su/forum/69-1018-1</link>
			<pubDate>Tue, 04 Jan 2011 02:21:35 GMT</pubDate>
			<description>Foro: &lt;a href=&quot;https://file-sharing.clan.su/forum/69&quot;&gt;T. Para Internet o Webs&lt;/a&gt;&lt;br /&gt;Autor del tema: unViciomás&lt;br /&gt;Ultimo mensaje ha sido publicado por : WMaster&lt;br /&gt;Número de respuestas: 0</description>
			<content:encoded>&lt;div align=&quot;center&quot;&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;Metodo Rapido Para Cifrar Textos: ROT-13&lt;/b&gt;&lt;/span&gt; &lt;p&gt; ROT13 («rotar 13 posiciones», a veces con un guión: ROT-13) es un sencillo cifrado César utilizado para ocultar un texto sustituyendo cada letra por la letra que está trece posiciones por delante en el alfabeto. A se convierte en N, B se convierte en O y así hasta la M, que se convierte en Z. Luego la secuencia se invierte: N se convierte en A, O se convierte en B y así hasta la Z, que se convierte en M. Este algoritmo se utiliza en foros de Internet como medio para ocultar de miradas casuales el final de un chiste, la solución a un acertijo, un spoiler de una película o una historia, o algún texto ofensivo. ROT13 se ha descrito como el «equivalente en Usenet de una revista que imprime bocabajo la respuesta a un pasatiempo».1 &lt;br /&gt; &lt;br /&gt; El nombre «ROT13» se originó en Usenet a principios de los 80, y el método se ha convertido en un estándar de facto. Al igual que el cifrado de César (un método de cifrado con miles de años), el ROT13 no proporciona seguridad criptográfica real y no se usa para tales fines; de hecho, a menudo se emplea como ejemplo canónico de cifrado débil. Otra característica de este cifrado es que es simétrico; esto es, para deshacer el ROT13, se aplica el mismo algoritmo, de manera que para cifrar y descrifrar se puede utilizar el mismo código. &lt;p&gt; &lt;img src=&quot;http://upload.wikimedia.org/wikipedia/commons/thumb/2/24/ROT13-es.png/800px-ROT13-es.png&quot; border=&quot;0&quot; alt=&quot;&quot;&gt; &lt;p&gt; &lt;b&gt;Descripción &lt;/b&gt; &lt;p&gt; Aplicar el ROT13 a un texto se reduce a examinar sus caracteres alfabéticos y sustituirlos por la letra que está 13 posiciones por delante en el alfabeto, volviendo al principio si es necesario y conservando las mayúsculas y minúsculas: a se convierte en n, B se convierte en O, y así hasta la Z, que se convierte en M. Solo quedan afectadas las letras que aparecen en el alfabeto latino; los números, símbolos, espacios y otros caracteres se dejan igual. Como hay 26 letras en el alfabeto latino y 26 = 2 × 13, la función ROT13 es su propia inversa: &lt;br /&gt; ROT13(ROT13(x)) = ROT26(x) = x para cualquier texto x. &lt;p&gt; En otras palabras, dos aplicaciones sucesivas de ROT13 recuperan el texto original (en matemáticas, esto a veces se llama involución; en criptografía, un cifrado recíproco). &lt;p&gt; La transformación se puede hacer utilizando una tabla de búsqueda como la siguiente:ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz &lt;br /&gt; NOPQRSTUVWXYZABCDEFGHIJKLMnopqrstuvwxyzabcdefghijklm &lt;p&gt; Por ejemplo, en este chiste, la respuesta se ha ocultado usando ROT13: &lt;br /&gt; ¿Cómo se puede distinguir a un extrovertido de un &lt;br /&gt; introvertido en la NSA? Ra ybf nfprafberf, &lt;br /&gt; ry rkgebiregvqb zven ybf mncngbf qr ybf BGEBF gvcbf. &lt;p&gt; Transformando todo el texto mediante el ROT13, se revela la respuesta al chiste: &lt;br /&gt; ¿Pbzb fr chrqr qvfgvathve n ha rkgebiregvqb qr ha &lt;br /&gt; vagebiregvqb ra yn AFN? En los ascensores, &lt;br /&gt; el extrovertido mira los zapatos de los OTROS tipos. &lt;p&gt; Una segunda aplicación del ROT13 recuperaría el original.&lt;/div&gt;</content:encoded>
			<category>T. Para Internet o Webs</category>
			<dc:creator>unViciomás</dc:creator>
			<guid>https://file-sharing.clan.su/forum/69-1018-1</guid>
		</item>
		<item>
			<title>REGISTRATE, POR FAVOR AYUDANOS!!</title>
			<link>https://file-sharing.clan.su/forum/69-1014-1</link>
			<pubDate>Mon, 03 Jan 2011 07:57:28 GMT</pubDate>
			<description>Foro: &lt;a href=&quot;https://file-sharing.clan.su/forum/69&quot;&gt;T. Para Internet o Webs&lt;/a&gt;&lt;br /&gt;Autor del tema: unViciomás&lt;br /&gt;Ultimo mensaje ha sido publicado por : WMaster&lt;br /&gt;Número de respuestas: 0</description>
			<content:encoded>&lt;div align=&quot;center&quot;&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;span style=&quot;color:red&quot;&gt;&lt;b&gt;REGISTRATE, POR FAVOR AYUDANOS!!&lt;/b&gt;&lt;/span&gt;&lt;/span&gt; &lt;br /&gt;&lt;br /&gt; &lt;li&gt; En la parte del &lt;b&gt;FORO&lt;/b&gt; encontraran todo tipo de Temas ej: Programas, peliculas, E-Book, Videos, tutoriales, etc. Si te &lt;b&gt;REGISTRAS&lt;/b&gt; en la Pagina podras subir tus Post en el FORO. &lt;br /&gt;&lt;br /&gt; &lt;li&gt; Tambien podes subir imagenes en el &lt;b&gt;Album de Fotos&lt;/b&gt; &lt;br /&gt;&lt;br /&gt; &lt;li&gt; Comparte tus Vídeos de Youtube &lt;br /&gt;&lt;br /&gt; &lt;li&gt; Comparte tus Links &lt;br /&gt;&lt;br /&gt; &lt;li&gt; Comparte las frases que mas te gustan &lt;br /&gt;&lt;br /&gt; &lt;li&gt; Sube y comparte tus archivos que pesen menos de 4MB &lt;br /&gt;&lt;br /&gt; &lt;li&gt; Tenes Juegos Online &lt;br /&gt;&lt;br /&gt; &lt;li&gt; Hay CHAT &lt;br /&gt;&lt;br /&gt; &lt;li&gt; Podes subir las letras de las canciones que mas te gusten &lt;br /&gt;&lt;br /&gt; &lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;a class=&quot;link&quot; href=&quot;http://unviciomas.com/index/3&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;&lt;span style=&quot;color:blue&quot;&gt;CLIC ACA PARA REGISTRARTE!!!&lt;/span&gt;&lt;/a&gt; &lt;br /&gt; &lt;/div&gt;&lt;/span&gt; &lt;br /&gt;&lt;br /&gt; &lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;GRACIAS&lt;/b&gt;&lt;/span&gt; &lt;img rel=&quot;usm&quot; src=&quot;http://unviciomas.com/smileys/good.gif&quot; border=&quot;0&quot; align=&quot;absmiddle&quot; alt=&quot;good&quot; /&gt;</content:encoded>
			<category>T. Para Internet o Webs</category>
			<dc:creator>unViciomás</dc:creator>
			<guid>https://file-sharing.clan.su/forum/69-1014-1</guid>
		</item>
		<item>
			<title>¿Cómo descargar de Freakshare, sin tener que esperar?</title>
			<link>https://file-sharing.clan.su/forum/69-938-1</link>
			<pubDate>Thu, 30 Dec 2010 18:32:43 GMT</pubDate>
			<description>Foro: &lt;a href=&quot;https://file-sharing.clan.su/forum/69&quot;&gt;T. Para Internet o Webs&lt;/a&gt;&lt;br /&gt;Autor del tema: unViciomás&lt;br /&gt;Ultimo mensaje ha sido publicado por : WMaster&lt;br /&gt;Número de respuestas: 0</description>
			<content:encoded>&lt;div align=&quot;center&quot;&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;¿Cómo descargar de Freakshare, sin tener que esperar?&lt;/b&gt;&lt;/span&gt; &lt;p&gt; &lt;img src=&quot;http://www.megaimg.com/images/54018107595570122042.jpg&quot; border=&quot;0&quot; alt=&quot;&quot;&gt; &lt;p&gt; Tome este link como ejemplo, pero funciona con cualquier link &lt;br /&gt; &lt;span style=&quot;color:blue&quot;&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt; &lt;br /&gt; &lt;a class=&quot;link&quot; target=&quot;_blank&quot; href=&quot;http://u.to/40if&quot; title=&quot;http://freakshare.net/files/jx6kjdgg/McAfee_Internet_Security_2010_3_PCs.rar.html&quot; rel=&quot;nofollow&quot;&gt;http://freakshare.net/files....ar.html&lt;/a&gt; &lt;/b&gt;&lt;/span&gt;&lt;/span&gt; &lt;p&gt; es algo completamente basico que ustedes pueden obtener a partir de mirar el codigo fuente de la pagina web del freakshare, y asi poder eliminar ese molesto cronometro de 10 minutos que aparece en la pagina cada vez que queremos descargar alguno que otro archivo. &lt;p&gt; es simple, abren el enlace de freakshare que desean descargar, y una vez cargada la pagina, nos vamos a la barra de direcciones, borramos la direccion y escribimos lo siguiente: &lt;p&gt; &lt;span style=&quot;font-size:20pt;&quot;&gt;&lt;br /&gt; &lt;span style=&quot;color:red&quot;&gt;&lt;b&gt;javascript:var time=0; var intervall=0;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt; &lt;p&gt; &lt;img src=&quot;http://www.megaimg.com/images/44129356556663309169.jpg&quot; border=&quot;0&quot; alt=&quot;&quot;&gt; &lt;p&gt; y a descargar... &lt;p&gt; &lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;Importante:&lt;/b&gt;&lt;/span&gt; &lt;br /&gt; hay que activar el java script, esto es mas facil hacerlo actualizando windows con el windows update...&lt;/div&gt;</content:encoded>
			<category>T. Para Internet o Webs</category>
			<dc:creator>unViciomás</dc:creator>
			<guid>https://file-sharing.clan.su/forum/69-938-1</guid>
		</item>
		<item>
			<title>Obtener AddThis - Botones para Compartir en Redes Sociales</title>
			<link>https://file-sharing.clan.su/forum/69-901-1</link>
			<pubDate>Wed, 29 Dec 2010 01:13:04 GMT</pubDate>
			<description>Foro: &lt;a href=&quot;https://file-sharing.clan.su/forum/69&quot;&gt;T. Para Internet o Webs&lt;/a&gt;&lt;br /&gt;Autor del tema: unViciomás&lt;br /&gt;Ultimo mensaje ha sido publicado por : WMaster&lt;br /&gt;Número de respuestas: 0</description>
			<content:encoded>&lt;div align=&quot;center&quot;&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;Instalación de AddThis en la página web&lt;/b&gt;&lt;/span&gt;&lt;/div&gt; &lt;p&gt; &lt;b&gt;Opción 1:&lt;/b&gt; &lt;br /&gt; &lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/1.png&quot; border=&quot;0&quot; alt=&quot;&quot;&gt; &lt;br /&gt; &lt;b&gt;Opción 2:&lt;/b&gt; &lt;br /&gt; &lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/2.png&quot; border=&quot;0&quot; alt=&quot;&quot;&gt; &lt;br /&gt; &lt;b&gt;Opción 3:&lt;/b&gt; &lt;br /&gt; &lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/3.png&quot; border=&quot;0&quot; alt=&quot;&quot;&gt; &lt;br /&gt; &lt;b&gt;Opción 4:&lt;/b&gt; &lt;br /&gt; &lt;img src=&quot;http://file-sharing.clan.su/FORO/Capturas/Para_Tutoriales/4.png&quot; border=&quot;0&quot; alt=&quot;&quot;&gt; &lt;p&gt; &lt;div align=&quot;center&quot;&gt;&lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;Copie y pegue el siguiente Codigo &lt;span style=&quot;color:blue&quot;&gt;Ctrl + C&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt; &lt;p&gt; Copie y pegue el siguiente fragmento de código en sus páginas, entre las &lt;b&gt;&lt;body&gt;&lt;/b&gt; y &lt;b&gt;&lt;/ body&gt;&lt;/b&gt;. Si su sitio web utiliza plantillas, también puede copiar el código en la plantilla, por lo que la caja de herramientas aparecerá en todas las páginas automáticamente. &lt;p&gt; &lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;&lt;span style=&quot;color:red&quot;&gt;Opción 1:&lt;/span&gt;&lt;/b&gt;&lt;/span&gt; &lt;p&gt; &lt;b&gt;&lt;!--BBhide--&gt;&lt;span class=&quot;UhideBlockL&quot;&gt;&lt;a href=&quot;javascript://&quot; onclick=&quot;new _uWnd(&apos;LF&apos;,&apos; &apos;,-250,-110,{autosize:0,closeonesc:1,resize:1},{url:&apos;/index/40&apos;});return false;&quot;&gt;Accesible sólo a usuarios&lt;/a&gt;&lt;/span&gt;&lt;span class=&quot;UhideBlock&quot;&gt;&lt;!-- AddThis Button BEGIN --&gt; &lt;br /&gt; &lt;div class=&quot;addthis_toolbox addthis_default_style &quot;&gt; &lt;br /&gt; &lt;a href=&quot;http://u.to/0lme&quot; title=&quot;http://www.addthis.com/bookmark.php?v=250&amp;username=german&quot; class=&quot;addthis_button_compact&quot;&gt;Share&lt;/a&gt; &lt;br /&gt; &lt;span class=&quot;addthis_separator&quot;&gt;|&lt;/span&gt; &lt;br /&gt; &lt;a class=&quot;addthis_button_preferred_1&quot;&gt;&lt;/a&gt; &lt;br /&gt; &lt;a class=&quot;addthis_button_preferred_2&quot;&gt;&lt;/a&gt; &lt;br /&gt; &lt;a class=&quot;addthis_button_preferred_3&quot;&gt;&lt;/a&gt; &lt;br /&gt; &lt;a class=&quot;addthis_button_preferred_4&quot;&gt;&lt;/a&gt; &lt;br /&gt; &lt;/div&gt; &lt;br /&gt; &lt;script type=&quot;text/javascript&quot;&gt;var addthis_config = {&quot;data_track_clickback&quot;:true};&lt;/script&gt; &lt;br /&gt; &lt;script type=&quot;text/javascript&quot; src=&quot;http://s7.addthis.com/js/250/addthis_widget.js#username=german&quot;&gt;&lt;/script&gt; &lt;br /&gt; &lt;!-- AddThis Button END --&gt;&lt;/span&gt;&lt;!--/BBhide--&gt;&lt;/b&gt; &lt;p&gt; &lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;&lt;span style=&quot;color:red&quot;&gt;Opción 2:&lt;/span&gt;&lt;/b&gt;&lt;/span&gt; &lt;p&gt; &lt;b&gt;&lt;!--BBhide--&gt;&lt;span class=&quot;UhideBlockL&quot;&gt;&lt;a href=&quot;javascript://&quot; onclick=&quot;new _uWnd(&apos;LF&apos;,&apos; &apos;,-250,-110,{autosize:0,closeonesc:1,resize:1},{url:&apos;/index/40&apos;});return false;&quot;&gt;Accesible sólo a usuarios&lt;/a&gt;&lt;/span&gt;&lt;span class=&quot;UhideBlock&quot;&gt;&lt;!-- AddThis Button BEGIN --&gt; &lt;br /&gt; &lt;div class=&quot;addthis_toolbox addthis_default_style &quot;&gt; &lt;br /&gt; &lt;a href=&quot;http://u.to/qVme&quot; title=&quot;http://www.addthis.com/bookmark.php?v=250&amp;username=german&quot; class=&quot;addthis_button_compact&quot;&gt;Share&lt;/a&gt; &lt;br /&gt; &lt;/div&gt; &lt;br /&gt; &lt;script type=&quot;text/javascript&quot;&gt;var addthis_config = {&quot;data_track_clickback&quot;:true};&lt;/script&gt; &lt;br /&gt; &lt;script type=&quot;text/javascript&quot; src=&quot;http://s7.addthis.com/js/250/addthis_widget.js#username=german&quot;&gt;&lt;/script&gt; &lt;br /&gt; &lt;!-- AddThis Button END --&gt;&lt;/span&gt;&lt;!--/BBhide--&gt;&lt;/b&gt; &lt;p&gt; &lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;&lt;span style=&quot;color:red&quot;&gt;Opción 3:&lt;/span&gt;&lt;/b&gt;&lt;/span&gt; &lt;p&gt; &lt;b&gt;&lt;!--BBhide--&gt;&lt;span class=&quot;UhideBlockL&quot;&gt;&lt;a href=&quot;javascript://&quot; onclick=&quot;new _uWnd(&apos;LF&apos;,&apos; &apos;,-250,-110,{autosize:0,closeonesc:1,resize:1},{url:&apos;/index/40&apos;});return false;&quot;&gt;Accesible sólo a usuarios&lt;/a&gt;&lt;/span&gt;&lt;span class=&quot;UhideBlock&quot;&gt;&lt;!-- AddThis Button BEGIN --&gt; &lt;br /&gt; &lt;div class=&quot;addthis_toolbox addthis_default_style addthis_32x32_style&quot;&gt; &lt;br /&gt; &lt;a class=&quot;addthis_button_preferred_1&quot;&gt;&lt;/a&gt; &lt;br /&gt; &lt;a class=&quot;addthis_button_preferred_2&quot;&gt;&lt;/a&gt; &lt;br /&gt; &lt;a class=&quot;addthis_button_preferred_3&quot;&gt;&lt;/a&gt; &lt;br /&gt; &lt;a class=&quot;addthis_button_preferred_4&quot;&gt;&lt;/a&gt; &lt;br /&gt; &lt;a class=&quot;addthis_button_compact&quot;&gt;&lt;/a&gt; &lt;br /&gt; &lt;/div&gt; &lt;br /&gt; &lt;script type=&quot;text/javascript&quot;&gt;var addthis_config = {&quot;data_track_clickback&quot;:true};&lt;/script&gt; &lt;br /&gt; &lt;script type=&quot;text/javascript&quot; src=&quot;http://s7.addthis.com/js/250/addthis_widget.js#username=german&quot;&gt;&lt;/script&gt; &lt;br /&gt; &lt;!-- AddThis Button END --&gt;&lt;/span&gt;&lt;!--/BBhide--&gt;&lt;/b&gt; &lt;p&gt; &lt;span style=&quot;font-size:14pt;&quot;&gt;&lt;b&gt;&lt;span style=&quot;color:red&quot;&gt;Opción 4:&lt;/span&gt;&lt;/b&gt;&lt;/span&gt; &lt;p&gt; &lt;b&gt;&lt;!--BBhide--&gt;&lt;span class=&quot;UhideBlockL&quot;&gt;&lt;a href=&quot;javascript://&quot; onclick=&quot;new _uWnd(&apos;LF&apos;,&apos; &apos;,-250,-110,{autosize:0,closeonesc:1,resize:1},{url:&apos;/index/40&apos;});return false;&quot;&gt;Accesible sólo a usuarios&lt;/a&gt;&lt;/span&gt;&lt;span class=&quot;UhideBlock&quot;&gt;&lt;!-- AddThis Button BEGIN --&gt; &lt;br /&gt; &lt;div class=&quot;addthis_toolbox addthis_default_style &quot;&gt; &lt;br /&gt; &lt;a class=&quot;addthis_button_facebook_like&quot; fb:like:layout=&quot;button_count&quot;&gt;&lt;/a&gt; &lt;br /&gt; &lt;a class=&quot;addthis_button_tweet&quot;&gt;&lt;/a&gt; &lt;br /&gt; &lt;a class=&quot;addthis_counter addthis_pill_style&quot;&gt;&lt;/a&gt; &lt;br /&gt; &lt;/div&gt; &lt;br /&gt; &lt;script type=&quot;text/javascript&quot;&gt;var addthis_config = {&quot;data_track_clickback&quot;:true};&lt;/script&gt; &lt;br /&gt; &lt;script type=&quot;text/javascript&quot; src=&quot;http://s7.addthis.com/js/250/addthis_widget.js#username=german&quot;&gt;&lt;/script&gt; &lt;br /&gt; &lt;!-- AddThis Button END --&gt;&lt;/span&gt;&lt;!--/BBhide--&gt;&lt;/b&gt;</content:encoded>
			<category>T. Para Internet o Webs</category>
			<dc:creator>unViciomás</dc:creator>
			<guid>https://file-sharing.clan.su/forum/69-901-1</guid>
		</item>
	</channel>
</rss>