So I have a script that announces what I'm playing on my radio broadcast, but i want the text it displays to have color.

This is the script:

Code:
//
//
//SAM Now Playing mIRC Script
//
//
alias getsong {
  unset %playing
  unset %song
  set %playing $read(C:\Program Files (x86)\mIRC\playing.html, 286)
  set %song $remove(%playing,<td>,<font size="2" color="#003366">,<small>,<span id="currently-playing-title">,</span>,</small>,</font>,</td>)
  /msg $chan ^C3 Phox Radio Now Playing: %song
}
on *:TEXT:!nowplaying:*:{
  getsong
}

menu channel {
  Now Broadcasting:getsong
}



How can I make the text ( Now Broadcasting:getsong part) have color?

Thanks

Last edited by Phox; 10/02/12 05:15 AM.