mIRC Homepage
Posted By: Produck Font change in all windows - 25/04/04 09:22 PM
Is it possible to change the font in all open windows (status, private and channels) when I'm changing the font in mIRC?
Posted By: Mentality Re: Font change in all windows - 26/04/04 06:43 AM
No, I'm afraid not.

See /help /font - You can change fonts for all an active type of window (i.e. all channels windows, all query windows etc) but, as yet, there is no option to change them all at the same time.

Regards,
Posted By: Fibsi Re: Font change in all windows - 26/04/04 12:33 PM
change font in all channels:

/chfont <font>
/chfont <size> <font>

if no size is given it defaults to 14pt

Code:
alias chfont scon -a chfont1 $1-
alias -l chfont1 {
  if ($1 isnum) var %size = $1, %font = $$2-
  else var %size = 14, %font = $$1-
  var %i = $chan(0)
  while (%i &gt; 0) {
    font -d $chan(%i) %size %font
    dec %i
  }
}
© mIRC Discussion Forums