Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
1k views

How to detect inactive user

How to detect inactive (idle) user in Windows application? I'd like to shutdown application when there hasn't been any input (keyboard, mouse) from user for certain period of time.
4
votes
1answer
648 views

What is the best way to detect user inactivity in a Silverlight app?

Does anyone know of an efficient way to detect user inactivity in a Silverlight App. The idea is that everytime a user interacts with the app in any way a timer would reload. When it expires, a ...
3
votes
2answers
977 views

How to detect user inactivity in Qt?

How can I detect user inactivity in a Qt QMainWindow? My idea so far is to have a QTimer that increments a counter, which, if a certain value is passed, locks the application. Any mouse or key ...
2
votes
6answers
153 views

Javascript disabled after a period of user inactivity

I have built an internal application for our company's users. There is no timeout after user inactivity nor do we want one. Users are complaining that after a certain amount of time (like 30 minutes) ...
2
votes
1answer
373 views

Android: Detect user inactivity / Detect (softkeyboard) keyboard input

I want to detect "user inactivity" in my Android app. To be more precise: I want to detect if the user has NOT done any interaction with my app (touching the screen, scrolling, input texts ...) for a ...
2
votes
3answers
1k views

How to detect USER INACTIVITY in android

User start MyAPP and logs in. Selects Session Timeout to be 5 mins. Does some operations on the app.......(all in foreground) Now User bring Myapp to background and starts some other app ----> Count ...
2
votes
2answers
445 views

How do I fade out 1 div and fade in 2 divs, then after 10 seconds of inactivity, fade in the 1st div again, and fade the 2 divs out?

This is my code currently: $(function() { $('#header_left').click(function(){ $('#header_left_info').fadeOut('fast'); $('#header_left').fadeOut('fast'); ...
1
vote
0answers
57 views

iPad view changes after x minutes of inactivity

I am writing an app wich ideally would go to the start screen after x minutes of inactivity, how can I achieve this please?
0
votes
3answers
55 views

Is there anyway to detect user inactivity in java?

I am writing a desktop application in which I want to perform an operation if user doesn't use the computer for X number of minutes. Just like auto idle in MSN messager or skype. Any hints?
0
votes
3answers
92 views

how to make animation inactive for some time period in jQuery

here the jsfiddle link to my problem http://jsfiddle.net/XnnvD/35/ (not quite working) I'll try explaining what the problem is, I have 3 sets of animation in jQuery 1- Image bounces and fades away ...
0
votes
1answer
278 views

Authlogic automatic logout on timeout

sorry for my english... I am using Authlogic gem in my application, I need the users get logout automatically after 15 minutes of inactivity, can somebody help me with this issue? Thanks in advice ...
0
votes
6answers
842 views

User Inactivity Logout PHP

I want my users to be logged out automatically after X minutes of inactivity. I also want to have all sessions destroyed. How can this be done? How can I check for inactivity then perform a function ...