Until Bruce decides to change it, you can try starting Configure with
this script (give it time to finish before interacting with Configure
dialogs). You will need to have the dialog plugin installed.

Don't know the reason (possibly a bug in the dialog plugin) but the
Configure controls do not get the script's selected font style and
size. However, the text size does get substantially increased. It
might be using system font.

Regards,
Sheri


*Configure Setup
SetConffonts()
win.sendkeys("{sinp}{shift}{tab}{shift}{right}")
wait.for(10)
SetConffonts()
for(local i=0; i<6; i++)
  wait.for(10)
  win.sendkeys("{sinp}{right}")
  SetConffonts()
endfor
quit

Function SetConffonts()
local dialog_status
local hWin=win.handle("=pproconf")
local confctrls=win.childhandlelist(hWin)
For each word confitem in confctrls
dialog.set_font(confitem, ?#"Arial" B 12.0#)
endfor
quit


Reply via email to