Hi Dietrich,

As a sample take a look at List.js 

qx.Proto._onkeypress = function(e)
{
  if (!this.getEnableInlineFind()) {
    return;
  }

  // Reset string after a second of non pressed key
  if (((new Date).valueOf() - this._lastKeyPress) > 1000) {
    this._pressedString = qx.constant.Core.EMPTY;
  }
  ....
}


Dietrich Streifert wrote:
> 
> I want to know if there is a possibility to retreive the time passed 
> since the user moved the mouse or typed a key.
> 

-- 
View this message in context: 
http://www.nabble.com/Retreiving-the-elapsed-time-since-the-last-mouse-or-key-event.-tf2608422.html#a7312673
Sent from the qooxdoo-devel mailing list archive at Nabble.com.


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to