Jump to content

Recommended Posts

Posted

I want to make a pop up that displays the process name for the currently active window ("firefox.exe" for example). How do I get this name?

While 1
    Sleep(2000)
    MsgBox(4096, "Process Name", "Process Name: " & ??????????)
WEnd
Posted

So

Local $Actwin = WinGetHandle("[active]")
Local $PidActwin = WinGetProcess($Actwin)
Local $NamePidActwin = _Findpidname($PidActwin)

MsgBox(0, '', $NamePidActwin)

Func _Findpidname($Pid)
    Local $Processlist = ProcessList()
    For $i = 1 To $Processlist[0][0]
        If $Processlist[$i][1] = $Pid Then Return $Processlist[$i][0]
    Next
EndFunc   ;==>_Findpidname

 

Sorry for the wait, but I've now tried your code, and it works verry well, thanks :). Thanks to you too John.

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
  • Recently Browsing   0 members

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