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:
import win32gui
w=win32gui
w.GetWindowText (w.GetForegroundWindow())
Post a Comment for "Getting The Name Of The Active Window"