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

Tips
Author: Message:
Volv
Skinning Contest Winner
*****

Avatar

Posts: 1233
Reputation: 31
34 / Male / Flag
Joined: Oct 2004
RE: Tips
Just a simple module for perhaps making Plus Menus easier to create.

Download Module: util_MsgPlus.js


Example Usage:

Generating the Menu
code:
function OnGetScriptMenu(){
    //Create new menu
    var myMenu = new PlusMenu;
   
    //Populate menu
        //Add a menu item
        myMenu.addItem("mnuItem1", "Item #1");
        myMenu.addItem("mnuItem2", "Item #2", false); //Disabled menu item
       
        //Add a separator because separators are pretty cool...
        myMenu.addSeparator();
       
        //Create a sub menu
        myMenu.openSubMenu("My 1st Sub Menu!");
            //Add a menu item to the sub menu
            myMenu.addItem("mnuItem3", "Item #3");
        myMenu.closeSubMenu();
       
        //Create a disabled sub menu
        myMenu.openSubMenu("My 2nd Sub Menu!", false);
        myMenu.closeSubMenu();
   
    //Build menu
    return myMenu.build();
}

Detecting when a menu item is clicked
code:
function OnEvent_MenuClicked(sMenuId){
    if(sMenuId=="mnuItem1"){
        MsgPlus.DisplayToast("Menu Click", "Menu Item #1 was clicked!");
    }
}


This post was edited on 04-19-2006 at 07:15 AM by Volv.
04-19-2006 06:29 AM
Profile PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Tips - by surfichris on 03-13-2006 at 12:06 PM
RE: Tips - by -dt- on 03-13-2006 at 12:11 PM
RE: Tips - by segosa on 03-13-2006 at 12:39 PM
RE: Tips - by surfichris on 03-13-2006 at 01:13 PM
RE: Tips - by Volv on 04-19-2006 at 06:29 AM
RE: Tips - by -dt- on 04-19-2006 at 06:57 AM
RE: Tips - by davidt on 08-15-2006 at 09:21 AM
RE: RE: Tips - by CookieRevised on 10-21-2006 at 01:44 AM
RE: Tips - by Plan-1130 on 10-25-2006 at 08:15 PM
RE: Tips - by matty on 10-25-2006 at 08:21 PM
RE: Tips - by tryxter on 01-08-2007 at 06:46 PM
RE: Tips - by CookieRevised on 01-28-2007 at 01:15 AM
RE: Tips - by Matti on 06-02-2007 at 05:02 PM
RE: Tips - by Matti on 06-07-2007 at 05:38 PM
RE: Tips - by henry1817 on 12-30-2009 at 04:13 PM
RE: Tips - by matty on 12-30-2009 at 04:20 PM
RE: Tips - by whiz on 06-24-2010 at 10:53 AM


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