Hey,
is it possible to get a list of all running applications with the task name (for example Notepad) and the window handle - perhaps with DLL or better -> with plugin?
thanks in advance![]()
Professional Software Development Tools
Hey,
is it possible to get a list of all running applications with the task name (for example Notepad) and the window handle - perhaps with DLL or better -> with plugin?
thanks in advance![]()
It's in the manualCode:local tWindows = Window.EnumerateTitles(true); if(tWindows)then for hWnd, sTitle in tWindows do --hWnd = Window Handle --sTitle = Window Title. end endlook for Window.EnumerateTitles
Great, I didn't know that there is such a function![]()