mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Aug 2007
Posts: 48
E
Ameglian cow
OP Offline
Ameglian cow
E
Joined: Aug 2007
Posts: 48
I read this somewhere else, but I have forgotten it, how do I hide channel window, but not close them... I know there is a command, and also.. something to show what channels I currently have hidden would be nice!

And no... I don't mean set a channel secret (people keep saying that)

Joined: Dec 2002
Posts: 3,547
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,547
1. To hide windows use /window -h.

/window -h #Help (To hide the channel help)
/window -h "Status Window" (To hide the Status Window)
/window -h Bob (To hide the query with Bob)

2. To show all hidden channels:

Code:
alias hidden {
  var %x = 1, %hidden
  while (%x <= $window(*,0)) {
    if ($window(*,%x).state == hidden) {
      %hidden = $addtok(%hidden,$window(*,%x),44)
    }
    inc %x
  }
  echo -a $numtok(%hidden,44) windows hidden: %hidden
}


Type /hidden.

Joined: Dec 2002
Posts: 2,962
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 2,962
The answer to both questions can be found here


Spelling mistakes, grammatical errors, and stupid comments are intentional.
Joined: Aug 2007
Posts: 48
E
Ameglian cow
OP Offline
Ameglian cow
E
Joined: Aug 2007
Posts: 48
Ahhh thanks guys, and yeah.. the second reply is the one I was talking about! x

Joined: Feb 2003
Posts: 3,432
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Feb 2003
Posts: 3,432
Since this is up, //window -h #channel <- hide channel, //window -w <- show channel again, but the channel is shown as minimized, shouldent the channel be restored to the default place in mirc?


if ($me != tired) { return } | else { echo -a Get a pot of coffee now $+($me,.) }
Joined: Jun 2006
Posts: 508
D
Fjord artisan
Offline
Fjord artisan
D
Joined: Jun 2006
Posts: 508
Try //window -rw #channel

Joined: Feb 2003
Posts: 3,432
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Feb 2003
Posts: 3,432
ty =)


if ($me != tired) { return } | else { echo -a Get a pot of coffee now $+($me,.) }

Link Copied to Clipboard