mIRC Home    About    Download    Register    News    Help

Print Thread
#80651 25/04/04 09:22 PM
Joined: Apr 2004
Posts: 1
P
Produck Offline OP
Mostly harmless
OP Offline
Mostly harmless
P
Joined: Apr 2004
Posts: 1
Is it possible to change the font in all open windows (status, private and channels) when I'm changing the font in mIRC?


Domains are like women, the best ones are always taken.
Joined: Jun 2003
Posts: 5,024
M
Hoopy frood
Offline
Hoopy frood
M
Joined: Jun 2003
Posts: 5,024
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,


Mentality/Chris
Joined: Jan 2004
Posts: 26
F
Ameglian cow
Offline
Ameglian cow
F
Joined: Jan 2004
Posts: 26
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
  }
}


Link Copied to Clipboard