So I've been learning a bit of scripting to help me do this and I've come to the conclusion I should use the ChatWndEditKeyDown event. and i've got as far as this:
code:
function OnEvent_ChatWndEditKeyDown( ChatWnd, vkKey, bCtrl, bShift ) {
if ((vkKey == 0x4D /* VK_RETURN */) && (bCtrl == false) && (bShift == false))
{
It's just now I don't know how to change the colour of the character, I've identified the character is the letter "m" but how can I change the colour of the letter?
I'm not sure if I'm using the right event, maybe i should be using the ChatWndSendMessage event instead to read through every character and replace the "m"s with the different coloured "m" characters, i just figured that would be slower than using the ChatWndEditKeyDown method and also means the colour affect would only appear in the converssation itself and not the box i enter text into on msn. Please please please help, this is starting to go over my head.