What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Quick Browser

Quick Browser
Author: Message:
Spunky
Former Super Mod
*****

Avatar

Posts: 3658
Reputation: 61
36 / Male / Flag
Joined: Aug 2006
O.P. Quick Browser
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 :p

This post was edited on 11-22-2006 at 03:17 PM by Spunky.
<Eljay> "Problems encountered: shit blew up" :zippy:
11-22-2006 03:07 PM
Profile PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Quick Browser - by Spunky on 11-22-2006 at 03:07 PM
RE: Quick Browser - by EBFL on 11-22-2006 at 03:08 PM
RE: Quick Browser - by Kenji on 11-22-2006 at 03:10 PM
RE: Quick Browser - by Eljay on 11-22-2006 at 03:12 PM
RE: Quick Browser - by Spunky on 11-22-2006 at 03:12 PM
RE: Quick Browser - by Felu on 11-22-2006 at 03:12 PM
RE: Quick Browser - by Spunky on 11-22-2006 at 03:12 PM
RE: Quick Browser - by Felu on 11-22-2006 at 03:23 PM
RE: Quick Browser - by Spunky on 11-22-2006 at 05:29 PM
RE: RE: Quick Browser - by Felu on 11-24-2006 at 11:26 AM
RE: Quick Browser - by EBFL on 11-24-2006 at 02:57 PM
RE: Quick Browser - by foaly on 11-24-2006 at 03:00 PM
RE: Quick Browser - by Kenji on 11-24-2006 at 03:04 PM
RE: Quick Browser - by ins4ne on 11-24-2006 at 03:10 PM
RE: Quick Browser - by Felu on 11-24-2006 at 03:11 PM
RE: Quick Browser - by Spunky on 11-24-2006 at 03:50 PM
RE: Quick Browser - by Felu on 11-24-2006 at 04:01 PM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On