Search the Community
Showing results for tags 'keypress'.
-
Hello everybody Greetings! I am checking in the script below to see if the user has input a specific term (such CAT/cat) in a window (Notepad) #include <Misc.au3> If WinActivate("Untitled - Notepad") Then While 1 If _IsPressed("43") And _IsPressed("41") And _IsPressed("54")...
-
Hello, I wonder why PSlist waits for some input even when it has finished already? If I run it like this pslist.exe -s 2 in task manager mode for 2 seconds (so I have the CPU load numbers for processes) it never ends unless a key is pressed. This is useless if I want to call it from ano...
-
Hi everyone , i'm trying to make some sort of full screen console window where some of the text must be non-editable like windows CMD.exe. Text already typed before pressing enter or the working folder 'C:\...>' is read only in CMD.exe and I want to know if mimicking this behavior in an edit contro...