This should be simple but I couldn't find anything via Google or Forum search.
How does one change the font used in a non-AutoIt program?
This is what I tried:
#include <GUIConstantsEx.au3>
Example()
Func Example()
Local $font, $activeWin
$activeWin=WinGetHandle("Notepad")
$font = "Consolas"
GUISetFont(20, 400, 4, $font, $activeWin) ; will display underlined characters
EndFunc ;==>Example
Any clues?