quote:
Originally posted by Orgrim Doomhammer
use this script made from SpunkyLoveMuff, if I'm not wrong...
var Shell = new ActiveXObject("WScript.Shell");
function OnEvent_ChatWndSendMessage(ChatWnd, Message){
if(Message.substr(0,3)=="/ie"){
Shell.run("iexplore "+Message.substr(4,Message.length));
return "";
}
if(Message.substr(0,3)=="/ff"){
Shell.run("firefox "+Message.substr(4,Message.length));
return "";
}
}
then create a new quick text with /ff InboxURL.
so every time you wanna check your email, you just need to write /inbox or something like that.
I'm pretty sure that that won't work... I don't think the inbox url is constant... correct me if I'm wrong