What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Need contact to the creator of MSN Online Time

Pages: (2): « First [ 1 ] 2 » Last »
Need contact to the creator of MSN Online Time
Author: Message:
amazon
New Member
*


Posts: 5
Joined: Jul 2006
O.P. Need contact to the creator of MSN Online Time
I translateD the programe to

English, Español, Italiano, Deutsch, Français, Português, Català, Galego and Dutch

contact with me by PM...

This post was edited on 07-30-2006 at 07:58 PM by amazon.
07-30-2006 05:45 PM
Profile E-Mail PM Find Quote Report
Sunshine
Elite Member
*****

Avatar

Posts: 5142
Reputation: 122
– / Female / Flag
Joined: Mar 2004
Status: Away
RE: Need contact to the creator of MSN Online Time
If you go to the script (MSN Online Time 1.1) on the script db you will find a link to his space...and onthere is an e-mail adress ;)

This post was edited on 07-30-2006 at 05:59 PM by Sunshine.
[Image: 25dr3o9]
07-30-2006 05:59 PM
Profile E-Mail PM Web Find Quote Report
amazon
New Member
*


Posts: 5
Joined: Jul 2006
O.P. RE: Need contact to the creator of MSN Online Time
i cant find the email, and the web doesnt work :/ someone can help me, or the creator contact to me:   oscarmaquedagarcia@hotmail.com
07-30-2006 08:01 PM
Profile E-Mail PM Find Quote Report
Menthix
forum admin
*******

Avatar

Posts: 5537
Reputation: 102
39 / Male / Flag
Joined: Mar 2002
RE: Need contact to the creator of MSN Online Time
amazon: Sent you a PM with details :).
Finish the problem
Menthix.net | Contact Me
07-30-2006 09:34 PM
Profile E-Mail PM Web Find Quote Report
Chrono
forum admin
*******

Avatar
;o

Posts: 6022
Reputation: 116
39 / Male / Flag
Joined: Apr 2002
Status: Away
RE: Need contact to the creator of MSN Online Time
i hope you didnt use an online translator to translate them :undecided:
[Image: wdz_discrate.png]
07-30-2006 09:36 PM
Profile PM Web Find Quote Report
M73A
Veteran Member
*****

Avatar


Posts: 3213
Reputation: 37
34 / Male / Flag
Joined: Jul 2004
RE: Need contact to the creator of MSN Online Time
quote:
Originally posted by Chrono
i hope you didnt use an online translator to translate them :undecided:

i was thinking that, its extremely rare when people know THAT many languages!

[Image: lost7ru.gif]
07-30-2006 09:57 PM
Profile E-Mail PM Find Quote Report
Menthix
forum admin
*******

Avatar

Posts: 5537
Reputation: 102
39 / Male / Flag
Joined: Mar 2002
RE: Need contact to the creator of MSN Online Time
Online Time only has about 3 strings to translate I believe, so it isn't that hard. But remember that when you want it added to the scripts DB in the international sections I need a good description in those languages too.

Online translators are indeed not sufficient.
Finish the problem
Menthix.net | Contact Me
07-30-2006 10:01 PM
Profile E-Mail PM Web Find Quote Report
amazon
New Member
*


Posts: 5
Joined: Jul 2006
O.P. RE: Need contact to the creator of MSN Online Time
quote:
Originally posted by M73A
quote:
Originally posted by Chrono
i hope you didnt use an online translator to translate them :undecided:

i was thinking that, its extremely rare when people know THAT many languages!

i used in some languages translator :/

PD: OMG!!! DHARMA!!! X__DDD
07-30-2006 11:02 PM
Profile E-Mail PM Find Quote Report
babar-mughal
New Member
*


Posts: 2
Joined: Jul 2006
Wink  Changed the script just a 'little' bit
Hi mate!

I really liked your script, and its running now 'all' the time ... :)
anyway, one of my mate while chatting to me told me that she was getting annoyed because of the script updating it self every sec, so I changed it a bit, removed second wise display updates. i haven't asked anyone to see if its work out better now. but i am putting the edited script here,  so other people can try it and see if it works in lesser updates sent out ... :)
cheerios to everyone doing a good [or bad] job .. :p

////////////////////////////SCRIPT//////////////////////////////////


var Sec = 0;
var Min = 0;
var Hrs = 0;
var Days = 0;
var Weeks = 0;

function OnEvent_Signin(Email)
{
    RegUserPath = (MsgPlus.ScriptRegPath).replace(/GlobalSettings/, Email) + '\\';
    MsgPlus.AddTimer("Time",1000);
    var lang = readreg('lang');
    if (lang == '') {
        writereg('lang', 'English', 'str');
    }
}

function OnEvent_Timer(sTimerId)
{
    if (sTimerId == "Time") {   
       
        if (Sec == "60") {
            Sec = 0;
            Min = Min + 1;
        }
        if (Min == "60") {
            Hrs = Hrs + 1;
            Min = 0;
        }
        if (Hrs == "24") {
            Hrs = 0;
            Days = Days + 1;
        }
        if (Days == "7") {
            Days = 0;
            Weeks = Weeks + 1
        }
       
        //Language Options
        var lang = readreg('lang');
        if (lang == 'English') {
            var OnlineTime = "Online Time: " + Min + " Minutes " + Hrs + " Hours " + Days + " Days";
        }
       
        if (lang == 'Spanish') {
            var OnlineTime = "Tiempo que Tengo Conectado: " + Min + " Minutos " + Hrs + " Horas " + Days + " Dias";
        }
       
        Messenger.MyPersonalMessage = OnlineTime
        Debug.Trace(OnlineTime);
        Sec = Sec + 1;
        MsgPlus.AddTimer("Time",1000);
       
    }
}

function onGetScriptMenu(nLocation) {
var sMenu = '<ScriptMenu>';
sMenu += '<SubMenu Label="Language">Languages ';
sMenu += '<MenuEntry Id="English">English</MenuEntry>';
sMenu += '<MenuEntry Id="Spanish">Spanish</MenuEntry>';
sMenu += '</SubMenu>';
sMenu += '</ScriptMenu>';
return sMenu;
}

function onEvent_MenuClicked(sMenuId, nLocation, Wnd)
{
    if (sMenuId == 'English') {
        writereg('lang', 'English', 'str');
    }
    if (sMenuId == "Spanish") {
        writereg('lang', 'Spanish', 'str');
    }
}

//Functions taken from theRand i hope you dont mind i needed them for settings and i didnt know how to do them
function isreg(path) {
var reg, tmp;
    try {
    reg = new ActiveXObject("WScript.Shell");
    tmp = reg.RegRead(RegUserPath + path);
        if(tmp != "") return true;
    } catch(e) {
    return false;
    }
}

function readreg(path) {
if(!isreg(path)) return false;
var reg = new ActiveXObject("WScript.Shell");
return reg.RegRead(RegUserPath + path);
}

function writereg(path, val, type) {
var reg = new ActiveXObject("WScript.Shell");
    switch(type) {
    case 'num':
    return reg.RegWrite(RegUserPath + path, val, 'REG_DWORD');
    break;

    case 'str':
    return reg.RegWrite(RegUserPath + path, val, 'REG_SZ');
    break;
    }
}

07-31-2006 10:10 PM
Profile E-Mail PM Find Quote Report
babar-mughal
New Member
*


Posts: 2
Joined: Jul 2006
RE: RE: Need contact to the creator of MSN Online Time
quote:
Originally posted by MenthiX
Online Time only has about 3 strings to translate I believe, so it isn't that hard. But remember that when you want it added to the scripts DB in the international sections I need a good description in those languages too.

Online translators are indeed not sufficient.




ps, if you could tell us how can we 'insert' foreign characters in script, i.e. arabic, urdu [asian languages with characters right to left], I could add another couple of languages to the script gladly ... :)
07-31-2006 10:13 PM
Profile E-Mail PM Find Quote Report
Pages: (2): « First [ 1 ] 2 » Last »
« Next Oldest Return to Top Next Newest »


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