grimmlock Posted February 27, 2014 Posted February 27, 2014 Good Morning. I am working on a app that a user can input a value and when Notepad is idle for the set value, the user is notified (MsgBox) and then NotePad is closed. So far when I have notepad open and I set the value in the input box and press the 'set' button it immediately pops the MsgBox and when so when I close the msgbox notepad closes. What I am trying to do is have the value in the input box be value that notepad has to be idle for more than, in order to display the message box, and close notepad, however is notepad becomes in use before the idle time reaches the value in the input box then I want to reset the timer. Any help would be appreciated. expandcollapse popup#include <GUIConstantsEx.au3> #include <UpDownConstants.au3> #include <Timers.au3> #include <MsgBoxConstants.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3> #include <ButtonConstants.au3> #include <EditConstants.au3> #include <Constants.au3> #include <GUIConstants.au3> #NoTrayIcon Opt("TrayOnEventMode",1) Opt("TrayMenuMode",1) TraySetOnEvent($TRAY_EVENT_PRIMARYUP,"SpecialEvent") ;~ Global $iIdleTime = _Timer_GetIdleTime() ;~ Global $hSet = 0 GUICreate('Seconds', 150, 100, default , default , $ws_popup+$ws_caption) $hLabel1 = GUICtrlCreateLabel('Seconds', 15, 18) $hInput1 = GUICtrlCreateInput('', 65, 15, 65) GUICtrlCreateUpdown($hInput1) $hButton1 = GUICtrlCreateButton('Set', 15, 50, 55) $hButton2 = GUICtrlCreateButton('Cancel', 75, 50, 55) GUISetState() While 1 Switch GUIGetMsg() ;~ Case $GUI_EVENT_CLOSE Case $hButton1 _idletime() Case $hButton2 GUISetState(@SW_HIDE) TraySetState(1) ; hide EndSwitch WEnd Func _idletime() $iIdleTime = _Timer_GetIdleTime() $hSet = GUICtrlRead($hInput1) * 1000 If WinExists('Notepad') And $iIdleTime >= GUICtrlRead($hSet) Then MsgBox(0, '', '$hSet = ' & $hSet & @CRLF & @CRLF & 'Idle time was ' & $iIdleTime) ;~ MsgBox(0, '', 'You have been idle for ' & GUICtrlRead($hInput1) & ' second(s)') Else MsgBox(0, '', @error) EndIf EndFunc Func SpecialEvent() GUISetState(@SW_SHOW) TraySetState(2) ; hide EndFunc Thanks Grimm Thanks Grimm
BrewManNH Posted February 27, 2014 Posted February 27, 2014 Don't use _Timer_GetIdleTime as that has nothing to do with the applications, it's a system timer. You're going to need to use TimerInit and TimerDiff to determine when "notepad" is sitting idle. Also look at AdLibRegister instead of using a button to start the timers. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now