[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 |
|
|
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 |
|
|
Fox-NL
New Member
Posts: 7
35 / / –
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 |
|
|
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 errrrrr
|
|
06-27-2006 08:58 PM |
|
|
Fr@nKy
Junior Member
Mess.be Addicted
Posts: 29
36 / / –
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.
|
|
06-27-2006 09:13 PM |
|
|
Zahid™
Senior Member
Posts: 954 Reputation: 18
– / /
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!
|
|
06-27-2006 09:20 PM |
|
|
Jellings
Full Member
Posts: 121
34 / / –
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).
|
|
06-27-2006 10:02 PM |
|
|
Jimcando
Full Member
Posts: 420 Reputation: 16
34 / /
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
|
|
06-27-2006 11:29 PM |
|
|
Fuzzles
Full Member
Posts: 170 Reputation: 22
31 / / –
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 |
|
|
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 |
|
|
Pages: (4):
« First
«
1
[ 2 ]
3
4
»
Last »
|
|