alfa Posted May 17, 2011 Posted May 17, 2011 GUICtrlSetFont($output1, 12, 800, "", "Comic Sans MS") GUICtrlSetFont($output2, 12, 800, "", "Comic Sans MS") GUICtrlSetFont($output3, 12, 800, "", "Comic Sans MS") GUICtrlSetFont($output4, 12, 800, "", "Comic Sans MS") GUICtrlSetFont($output5, 12, 800, "", "Comic Sans MS") GUICtrlSetFont($output6, 12, 800, "", "Comic Sans MS") What can i do instead if this.
monoscout999 Posted May 17, 2011 Posted May 17, 2011 GuisetFont() sets the default font for a GUI and all his controls...
wakillon Posted May 17, 2011 Posted May 17, 2011 (edited) you can use GUISetFont ( 12, 800, "", "Comic Sans MS" ) or use an array : Dim $output[7] For $_I = 1 To UBound ( $output ) -1 GUICtrlSetFont($output[$_I], 12, 800, "", "Comic Sans MS") Next Edited May 17, 2011 by wakillon AutoIt 3.3.18.0 X86 - SciTE 4.4.6.0 - WIN 11 24H2 X64 - Other Examples Scripts
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now