mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Mar 2004
Posts: 2
G
gerhard Offline OP
Bowl of petunias
OP Offline
Bowl of petunias
G
Joined: Mar 2004
Posts: 2
Hi

What I miss is getting "notifies" whenever a nickname in my notify list comes on the IRC network and mirc is minimized to the windows tray.

Or is there a possibility to get notifications like in ICQ or any other messenger...

Gerhard




Joined: Jan 2003
Posts: 2,523
Q
Hoopy frood
Offline
Hoopy frood
Q
Joined: Jan 2003
Posts: 2,523
It's relatively easy to script:
Code:
dialog notifyintray {
  title "Notify"
  size -1 -1 186 52
  option dbu
  button "O&K", 1, 74 34 37 12, ok
  text "", 2, 5 11 175 11, center
}
on *:notify:{
  if $appstate != tray { return }
  var %r = $r(1,999999)
  while $dialog(notifyintray $+ %r) { %r = $r(1,999999) }
  var %d = notifyintray $+ %r
  dialog -mdo %d notifyintray
  did -a %d 2 $nick (on $network $+ ) is online!
  beep 3
}


/.timerQ 1 0 echo /.timerQ 1 0 $timer(Q).com
Joined: Nov 2003
Posts: 11
G
Pikka bird
Offline
Pikka bird
G
Joined: Nov 2003
Posts: 11
yeah.. i like this idea, but i think that you can already make it beep within the current version... but i think we could take this a little farther... with maybe being able to have your notify box pop up automatically when it's minimized and someone comes on.... or maybe something similar....

Joined: Mar 2004
Posts: 2
G
gerhard Offline OP
Bowl of petunias
OP Offline
Bowl of petunias
G
Joined: Mar 2004
Posts: 2
Works great! Thx!


Link Copied to Clipboard