Skip to content Skip to sidebar Skip to footer

Getting The Name Of The Active Window

I want to write a python script on Windows that saves the title of the program that the user uses at a given time like the http://www.rescuetime.com . I don't want to use rescuetim

Solution 1:

From daniweb

  import win32gui
  w=win32gui
  w.GetWindowText (w.GetForegroundWindow())

Post a Comment for "Getting The Name Of The Active Window"