Jump to content

Recommended Posts

Posted (edited)

how do i get the name of a process of an active window, i got this but im not sure

#include <Process.au3>

if WinExists("") then

$pid = WinGetProcess("")

$name = _ProcessGetName($pid)

MsgBox(0, "Note " & $pid, $name)

Edited by leias
Posted

how do i get the name of a process of an active window, i got this but im not sure

#include <Process.au3>

if WinExists("") then

$pid = WinGetProcess("")

$name = _ProcessGetName($pid)

MsgBox(0, "Note " & $pid, $name)

...and what happens when you try it? Really, did you need to ask this without trying it first?

P.S. There is no need for "If WinExists()" if you are not going to specify a window. Some window always exists, and some window is always active, so you can just start off with $pid = WinGetProcess("").

:D

Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Posted

...and what happens when you try it? Really, did you need to ask this without trying it first?

P.S. There is no need for "If WinExists()" if you are not going to specify a window. Some window always exists, and some window is always active, so you can just start off with $pid = WinGetProcess("").

:D

ho thanks i found my error cause i rewrite it here i write it right this time, i checked my code and i found the error. thanks :D

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...