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

Pages: (2): « First « 1 [ 2 ] Last »
Delayed Writing
Author: Message:
whiz
Senior Member
****


Posts: 568
Reputation: 8
– / – / Flag
Joined: Nov 2008
RE: Delayed Writing
Oops!  Replace this:
Javascript code:
            Wnd : pChatWnd;


...with this:
Javascript code:
            Wnd : pChatWnd


(in other words, remove the semi-colon from the end)
06-05-2010 03:08 PM
Profile E-Mail PM Find Quote Report
Barathrum
Junior Member
**

Avatar
.......................

Posts: 42
30 / Male / Flag
Joined: Nov 2009
O.P. RE: Delayed Writing

Also, do you think, that you could make it close the window for me when it finish typing and then open it again?

Also it is very buggy :O

It only seems to work normal when you type the 1st msg, after that every is buggy, unless you reopen the window.

This post was edited on 06-05-2010 at 04:49 PM by Barathrum.
06-05-2010 04:41 PM
Profile E-Mail PM Find Quote Report
whiz
Senior Member
****


Posts: 568
Reputation: 8
– / – / Flag
Joined: Nov 2008
RE: Delayed Writing
In what sense is it buggy?

Does it stop sending messages (probably because of the flood protection)?  Do colour tags mess up (display as tags)?  Do emotions move to the end of lines (with "written" versions in the original positions)?
06-05-2010 04:58 PM
Profile E-Mail PM Find Quote Report
Barathrum
Junior Member
**

Avatar
.......................

Posts: 42
30 / Male / Flag
Joined: Nov 2009
O.P. RE: Delayed Writing
Well messages bugg like, they are send in 1 line, or they get writen like 5 times the whole text, not char by char, emotions ofc. don't get spelled, which is obvious.
06-05-2010 05:29 PM
Profile E-Mail PM Find Quote Report
matty
Scripting Guru
*****


Posts: 8336
Reputation: 109
39 / Male / Flag
Joined: Dec 2002
Status: Away
RE: Delayed Writing
I know why it happens... I don't really feel like fixing it. After the last character is sent the object needs to be deleted. For it to work again.
06-05-2010 06:54 PM
Profile E-Mail PM Find Quote Report
Barathrum
Junior Member
**

Avatar
.......................

Posts: 42
30 / Male / Flag
Joined: Nov 2009
O.P. RE: Delayed Writing
Ohh, is it hard to delete the object? Or can anyone tell me how I remove the Object?

06-05-2010 07:40 PM
Profile E-Mail PM Find Quote Report
matty
Scripting Guru
*****


Posts: 8336
Reputation: 109
39 / Male / Flag
Joined: Dec 2002
Status: Away
RE: Delayed Writing
Change the function for the timer to the following:

Javascript code:
function OnEvent_Timer(sTimerId) {
    var oChat = oChatWnds[sTimerId];
    var Message = oChatWnds[sTimerId].Message.charAt(oChatWnds[sTimerId].i);
    if (Message === '/') Message = '//';
    ++oChatWnds[sTimerId].i;
    oChat.Wnd.SendMessage(Message);
    if (oChatWnd[sTimerId].i === oChatWnd[sTimerId].Message.length)
        delete oChatWnd[sTimerId];
    else
        MsgPlus.AddTimer(sTimerId, 5000);
}

06-06-2010 02:12 AM
Profile E-Mail PM Find Quote Report
Barathrum
Junior Member
**

Avatar
.......................

Posts: 42
30 / Male / Flag
Joined: Nov 2009
O.P. RE: Delayed Writing
Nop still bugs alot :/  When typing in messages, it just writes the whole word in a weird order and such :/
06-06-2010 07:10 AM
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