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

<channel>
	<title>Flasheves &#187; Actionscript 2</title>
	<atom:link href="http://www.flasheves.com/category/actionscript-2/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.flasheves.com</link>
	<description>programacion, analisis , diseño</description>
	<lastBuildDate>Thu, 18 Mar 2010 22:48:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Detectar inactividad del mouse</title>
		<link>http://www.flasheves.com/detectar-inactividad-del-mouse/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=detectar-inactividad-del-mouse</link>
		<comments>http://www.flasheves.com/detectar-inactividad-del-mouse/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 01:44:52 +0000</pubDate>
		<dc:creator>eveevans</dc:creator>
				<category><![CDATA[Actionscript 2]]></category>
		<category><![CDATA[ActionScript2]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://localhost/flasheves/?p=7</guid>
		<description><![CDATA[Script para detectar la inactividad del mouse pasado determinado tiempo]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-37" title="mouse" src="http://www.flasheves.com/wp-content/uploads/2009/08/mouse.jpg" alt="mouse" /></p>
<p>Con este script haremos que si ha transcurrido cierta cantidad  de tiempo y el mouse no se ha movido, entonces que realize una acción determinada.</p>
<p>Es decir que detecte la inactividad del Mouse.</p>
<p><pre class="brush: as3;">
 var raton:Object=new Object();
 var reloj:Number=0;
 var espera:Number=3;

 raton.onMouseMove=function(){
 reloj=0;
 }

 function contador()
 {
 trace(reloj);
 reloj++;
 if(reloj&amp;gt;=espera)
 trace(”inactividad encontrada”);
 }

 var hilo=setInterval(contador,1000);
 Mouse.addListener(raton);
</pre></p>
]]></content:encoded>
			<wfw:commentRss>http://www.flasheves.com/detectar-inactividad-del-mouse/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->