What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [?] Help with choosing a function in menu

[?] Help with choosing a function in menu
Author: Message:
cold12141
New Member
*


Posts: 3
Joined: Jan 2007
RE: [?] Help with choosing a function in menu
Well, I had to clean up that code a lot, but it should work. I'm not sure if the timer after you logout though but eh, worth a shot.
code:
var option = 0;
function OnGetScriptMenu(nLocation)
{
    var ScriptMenu = '<ScriptMenu>';
    ScriptMenu += '<MenuEntry Id=\"fnormal\">normal</MenuEntry>'
    ScriptMenu += '<MenuEntry Id=\"fdelay\">delay</MenuEntry>'
    ScriptMenu += '<MenuEntry Id=\"foff\">off</MenuEntry>'
    ScriptMenu += '</ScriptMenu>';
    return '<ScriptMenu>'
}

function OnEvent_MenuClicked(sMenuId)
{
    if(sMenuId == "fnormal")
    {
        MsgPlus.DisplayToast("Menu Click", "Menu Item #1 was clicked!");
        option = 0;
    }
    if(sMenuId == "fdelay")
    {
        MsgPlus.DisplayToast("Menu Click", "Menu Item #2 was clicked!");
        option = 1;
    }
    if(sMenuId == "foff")
    {
        MsgPlus.DisplayToast("Menu Click", "Menu Item #3 was clicked!");
        option = 2;
    }
}

function OnEvent_Signout(Email)
{
    if(option == 0)
    {
        new ActiveXObject('WScript.Shell').Run("\"C:\\Task.exe\"");
    }
    else if(option == 1)
    {
        MsgPlus.AddTimer(countdown, 10000)
    }
}

function OnEvent_Timer(TimerId)
{
    if(TimerId = "countdown")
    {
        new ActiveXObject('WScript.Shell').Run("\"C:\\Task.exe\"");
    }
}
01-29-2007 08:57 AM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
[?] Help with choosing a function in menu - by Cartox on 01-28-2007 at 12:05 PM
RE: [?] Help with choosing a function in menu - by cold12141 on 01-29-2007 at 08:57 AM
RE: [?] Help with choosing a function in menu - by Cartox on 01-29-2007 at 04:52 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