--- In [email protected], "philipp_l_kiefer" <philippkie...@...> wrote:
>
> Could someone (Sheri?) please post a simple script that (or tell
> me how to modify the script below so that it) does the same (i.e.
> increase the font size) for PproConf's "Edit list item" dialog?
Try this. It would need to be run whenever the "Edit list item" dialog is
opened. You could actually run it from the autorun command list targetting
=pproconf,&,Edit list item
local dialog_status
local allctrls= ;;+
win.childhandlelist(win.handle("=pproconf,&,Edit list item"))
for each word hwnd in allctrls
dialog.set_font(hwnd) ;;uses system font
endfor
quit
Regards,
Sheri