Ver Mensaje Individual
  #3 (permalink)  
Antiguo 29/10/2009, 17:36
Avatar de TMeister
TMeister
Crazy Coder
 
Fecha de Ingreso: enero-2002
Ubicación: En la Oficina
Mensajes: 2.880
Antigüedad: 22 años, 10 meses
Puntos: 193
Respuesta: inactividad de raton sobre aplicacion

Creo que mi explicación no fue muy buena :) aqui te dejo un ejemplo

Código actionscript:
Ver original
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <mx:Application
  3.     xmlns:mx="http://www.adobe.com/2006/mxml"
  4.     layout="absolute"
  5.     minWidth="1024"
  6.     minHeight="768" creationComplete="{init()}"
  7.     >
  8.    
  9.     <mx:Script>
  10.         <![CDATA[
  11.             import mx.controls.Alert;
  12.             import mx.events.CloseEvent;
  13.            
  14.             private var wait:Timer;
  15.             private const SECONDS:uint = 2;
  16.            
  17.             private function init():void
  18.             {
  19.                 wait = new Timer( SECONDS * 1000);
  20.                 wait.addEventListener(TimerEvent.TIMER, saySomething);
  21.                 wait.start();
  22.                 addEventListener(MouseEvent.MOUSE_MOVE, isMoving);
  23.             }
  24.             private function saySomething(e:TimerEvent):void
  25.             {
  26.                 Alert.show('Hey Weakup.. =)', 'Do something', 4, null, startAgain);
  27.                 wait.stop();
  28.             }
  29.             private function isMoving(e:MouseEvent):void
  30.             {
  31.                 wait.reset();
  32.                 wait.start();
  33.             }
  34.             private function startAgain(e:CloseEvent):void
  35.             {
  36.                 wait.start();
  37.             }
  38.         ]]>
  39.     </mx:Script>
  40.    
  41. </mx:Application>

Saludos!!