What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [Release] Imitate Contacts!

Pages: (4): « First « 1 [ 2 ] 3 4 » Last »
[Release] Imitate Contacts!
Author: Message:
upsfeup
Junior Member
**


Posts: 67
Joined: Feb 2005
RE: [Release] Imitate Contacts!
I guess is a due a delay on the name change. I wonder if other imitate functions use this same method!
06-27-2006 08:44 PM
Profile E-Mail PM Find Quote Report
herbert7890
New Member
*


Posts: 9
Joined: Jun 2006
RE: [Release] Imitate Contacts!
anyone  can help  on how  to make  it  work  100% of  the  time?
06-27-2006 08:52 PM
Profile E-Mail PM Find Quote Report
Fox-NL
New Member
*


Posts: 7
35 / Male / –
Joined: Oct 2005
O.P. RE: [Release] Imitate Contacts!
Hahah that probably wont work, unless you try a different method like waiting for a couple of seconds before sending the message... but that could unveil the trick
06-27-2006 08:54 PM
Profile PM Find Quote Report
herbert7890
New Member
*


Posts: 9
Joined: Jun 2006
RE: [Release] Imitate Contacts!
but  i also  figured  it  only  works  when  u have  only  one  convo  box  open,  if  u have  more,  it  doesnt  work,  and  even  when u have just one  convo  open,  it  works  like 30%  only :S  errrrrr
06-27-2006 08:58 PM
Profile E-Mail PM Find Quote Report
Fr@nKy
Junior Member
**

Avatar
Mess.be Addicted

Posts: 29
35 / Male / –
Joined: Jan 2005
RE: [Release] Imitate Contacts!
it's great but can't you add the function of mimic the font and color?

This post was edited on 06-27-2006 at 09:13 PM by Fr@nKy.
[Image: Signature.png]
06-27-2006 09:13 PM
Profile PM Find Quote Report
Zahid™
Senior Member
****

Avatar

Posts: 954
Reputation: 18
– / Male / Flag
Joined: Nov 2005
RE: [Release] Imitate Contacts!
quote:
Originally posted by Fr@nKy
it's great but can't you add the function of mimic the font and color?
quote:
Originally posted by Fox-NL
I want to add font and color support, but currently i have no idea how!
[Image: Zahid.png]
06-27-2006 09:20 PM
Profile PM Web Find Quote Report
Jellings
Full Member
***

Avatar

Posts: 121
34 / Male / –
Joined: Dec 2004
RE: [Release] Imitate Contacts!
Nice script.
It's worked every try. After reading some other posts about it not working with more than one conversations open i tried it with 3 other conversations open and it worked then too.

Is there any way to change the "!imitate" shortcut?
I tried changing it to "!im" by editing the script, but it didn't work (it just send out the message with "!im" at the begining just as i typed).
[Image: Jellings.png]


[Image: ++++-+Click+Here+-.png]
06-27-2006 10:02 PM
Profile E-Mail PM Find Quote Report
Jimcando
Full Member
***

Avatar

Posts: 420
Reputation: 16
34 / Male / Flag
Joined: Dec 2003
RE: [Release] Imitate Contacts!
Ahhh, I remember all those times I had fun with people with the !imitate function of Messenger Discovery....

But it only works to full effect if it uses the same font and colour etc...I'll download this as soon as that gets sorted out :P
06-27-2006 11:29 PM
Profile E-Mail PM Find Quote Report
Fuzzles
Full Member
***

Avatar

Posts: 170
Reputation: 22
30 / Male / –
Joined: Mar 2006
RE: [Release] Imitate Contacts!
I can't wait till this works 100%
Go in a massive convo and do it
06-27-2006 11:31 PM
Profile E-Mail PM Find Quote Report
f1utils
New Member
*


Posts: 2
Joined: Jun 2006
RE: [Release] Imitate Contacts!
    Hello,
    I'm spanish and my english is very poor. Sorry.
    I have modified the script. I add a delay of one second after changing my name by the one of my contact.
    I have tested it with a conversation and a contact and works.

    The code:

code:

var myWnd;
var myName;
var myMessage;

function OnEvent_Initialize(MessengerStart) {
    wait = false;
}

function OnEvent_ChatWndSendMessage(Wnd,Msg) {
    if(Msg.length > 8 && wait == false) {
        if(Msg.substr(0,8) == "!imitate") {
            var WndContacts = Wnd.Contacts;
            if(WndContacts.Count == 1) {
                var e = new Enumerator(WndContacts);
                var Cnt = e.item();
                var Tmpname = Messenger.MyName;
                myName = Messenger.MyName;
                myWnd = Wnd;
                myMessage = Msg.substr(9,Msg.length-9);
                Messenger.MyName = Cnt.Name; wait = true;
                MsgPlus.AddTimer('myTimer', 1000);
            }
            return "";
        }
    }
}

function OnEvent_Timer(TimerId)
{
    if(TimerId == 'myTimer')
    {
        myWnd.SendMessage(myMessage);
        Messenger.MyName = myName;
        wait = false;
    }
}


06-29-2006 01:11 PM
Profile E-Mail PM Find Quote Report
Pages: (4): « First « 1 [ 2 ] 3 4 » 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