Is there a way to increase the size or color of text displayed in a dialogbox in Procomm Aspect scripting?
Example:
proc main
dialogbox 0 0 0 100 50 11 "Text Example"
text 1 5 5 90 12 "Text may be used to make" LEFT
text 2 5 20 90 12 "the function of dialogs" LEFT
text 3 5 35 90 12 "clearer." LEFT
enddialog
pause 5 ; Show off the dialog text.
dlgdestroy 0 CANCEL ; Destroy the dialog box.
endproc
Can I increase the font size or color in the "text" lines listed above?
Example:
proc main
dialogbox 0 0 0 100 50 11 "Text Example"
text 1 5 5 90 12 "Text may be used to make" LEFT
text 2 5 20 90 12 "the function of dialogs" LEFT
text 3 5 35 90 12 "clearer." LEFT
enddialog
pause 5 ; Show off the dialog text.
dlgdestroy 0 CANCEL ; Destroy the dialog box.
endproc
Can I increase the font size or color in the "text" lines listed above?