mIRC Homepage
Posted By: gerhard Get notifications when mirc is in tray... - 10/03/04 02:54 PM
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



Posted By: qwerty Re: Get notifications when mirc is in tray... - 10/03/04 10:58 PM
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
}
Posted By: garyh Re: Get notifications when mirc is in tray... - 11/03/04 09:29 AM
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....
Works great! Thx!
© mIRC Discussion Forums