Well, I'm to late, frown Cuz you can use agent to do that, i just came up with something but, glad you got it working.
I'll post it anyway incase this helps someone in the future. The below script requires that you have agent fully working on your PC.

Code:
alias balloonnotice {
  var %message = $1-
  var %maxwidth = $window(-1).w
  var %maxheight = $window(-1).h
  %maxwidth = $calc(%maxwidth -100)
  ;%maxheight = $calc(%maxheight -24)

  .gload agent
  .gsize agent 1 1
  .gopts -b agent on nopace
  .gmove agent 0 0 0
  .gmove agent %maxwidth %maxheight 0
  .gtalk -k agent %message
}
on 1:agent:{ if ($agent(agent)) { gunload agent }
 


Usage: /balloonnotice text

Last edited by Scorpwanna; 19/09/06 06:58 PM.