Jump to content

active window's process


 Share

Recommended Posts

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
Link to comment
Share on other sites

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
Link to comment
Share on other sites

...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

Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...