mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: May 2003
Posts: 78
M
MauS Offline OP
Babel fish
OP Offline
Babel fish
M
Joined: May 2003
Posts: 78
I need to somehow hide mIRC from taskbar and show it only in tray even when not minimized. There is nothing about it in Display - Tray.

Best variant is switching this on and off via script command, but i'll accept any advice up to editing mIRC recources.


-= endless in a victory of a yourself =-
Joined: Mar 2003
Posts: 272
C
Fjord artisan
Offline
Fjord artisan
C
Joined: Mar 2003
Posts: 272
The best way would be to make a script that works with $appactive and /showmirc, so whenever $appactive returns $true, you just /showmirc -t.

So basically...
Code:
On 1:START:{ .timertray 0 1 checkstate }
alias checkstate {
  if ($appactive) { .showmirc -t }
}


- cF
Dedicated helper for rent.
Joined: May 2003
Posts: 78
M
MauS Offline OP
Babel fish
OP Offline
Babel fish
M
Joined: May 2003
Posts: 78
But this will only hide mIRC to tray if it's active on start, this can be done from Display - Tray.

I mean mIRC didn't show itself in taskbar while chatting in it -- while mIRC is an active app.

Err... mIRC remains active and no mIRC in taskbar. ...How?


-= endless in a victory of a yourself =-
Joined: Feb 2003
Posts: 2,812
Hoopy frood
Offline
Hoopy frood
Joined: Feb 2003
Posts: 2,812
On *:APPACTIVE: .showmirc -t
On *:ACTIVE:*: .window -nuh " $+ $active $+ " | .showmirc -t
You can use any combination of those above switches, depending on what you want.


Well. At least I won lunch.
Good philosophy, see good in bad, I like!
Joined: Dec 2002
Posts: 699
N
Fjord artisan
Offline
Fjord artisan
N
Joined: Dec 2002
Posts: 699
Err... mIRC remains active and no mIRC in taskbar. ...How?
/showmirc -t won't allow that :tongue:

Joined: May 2003
Posts: 78
M
MauS Offline OP
Babel fish
OP Offline
Babel fish
M
Joined: May 2003
Posts: 78
Yeah that's what i wanted to say


-= endless in a victory of a yourself =-

Link Copied to Clipboard