AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Search found 6 matches
AutoHotkey Community Forum Index
Author Message
  Topic: Expression bug?
pvi

Replies: 2
Views: 232

PostForum: Bug Reports   Posted: Sat Apr 12, 2008 3:45 pm   Subject: Expression bug?
ok, thx
  Topic: Expression bug?
pvi

Replies: 2
Views: 232

PostForum: Bug Reports   Posted: Sat Apr 12, 2008 2:16 pm   Subject: Expression bug?
Can anyone explain to my why this code:

x := 0 <= 22 and 0 >= 6

if x
msgbox true

return


reacts different from this code?

if 0 <= 22 and 0 >= 6
msgbox true

r ...
  Topic: A_TimeIde and A_TimeIdlePhysical problem
pvi

Replies: 3
Views: 187

PostForum: Ask for Help   Posted: Fri Apr 11, 2008 7:11 pm   Subject: A_TimeIde and A_TimeIdlePhysical problem
I was able to solve this in a rather dirty way, but it works.

On the main user automatically start autohotkey with the following script:

#Persistent
SetTimer, CheckShutdown, 300000 ; Check ever ...
  Topic: A_TimeIde and A_TimeIdlePhysical problem
pvi

Replies: 3
Views: 187

PostForum: Ask for Help   Posted: Fri Apr 04, 2008 8:16 am   Subject: A_TimeIde and A_TimeIdlePhysical problem
No, it does contain values, and it also works ok with just a single user (or when the user under which the script is running is the active user), the problem is that A_TimeIdle doesnt reset when anoth ...
  Topic: A_TimeIde and A_TimeIdlePhysical problem
pvi

Replies: 3
Views: 187

PostForum: Ask for Help   Posted: Fri Apr 04, 2008 7:55 am   Subject: A_TimeIde and A_TimeIdlePhysical problem
I want my computer to suspend after 30 min of inactivty, so I wrote the following script:


#Persistent
SetTimer, CheckShutdown, 60000
return

CheckShutdown:
if A_TimeIdle > 1800000 ...
  Topic: Easier obtaining process list (and works on Vista)
pvi

Replies: 0
Views: 667

PostForum: Scripts & Functions   Posted: Mon Mar 31, 2008 8:30 pm   Subject: Easier obtaining process list (and works on Vista)
I wanted to obtain a list of processes to search for the process id's of a specific running processes. So I used example 4 in the help of the Process command to obtain this. This all worked ok on XP, ...
 
Page 1 of 1
All times are GMT
Jump to:  


Powered by phpBB © 2001, 2005 phpBB Group