Just made this script and though some people may find it handy... I've not seen anything like it around on the forums so... y'know lol
/ie - Opens link in Internet Explorer
/ff - Opens link in FireFox
Examples:
/ff hotmail.com
/ff
http://shoutbox.menthix.net
/ie google.co.uk
/ie
http://www.msgpluslive.net
Also, could this not be used to open the users Inbox in FF? Just leave the account signed in and then open it in FF using this method (from a button or something though obviously)
code:
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 "";
}
}
EDIT: Update after Eljay's Comments