If somebody knows a way to find out the font of the contact like Spunky says, I've come up with a script to set it:
code:
var WshShellObj = new ActiveXObject("WScript.Shell");
var fontToSet = 'Arial';
function changeFont(ChatWnd)
{
MsgPlus.AddTimer('setFont', 500);
Interop.Call('user32', 'SendMessageW', ChatWnd.Handle , 0x0111, 40211, 0);
}
function OnEvent_Timer(TimerId)
{
WshShellObj.SendKeys(fontToSet + '{ENTER}');
}
It's the only method I could come up with and it displays the font window for a split second - maybe it would inspire somebody.
I'm quite new to scripting.