What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Skype & Technology » Skype & Live Messenger » Problem- Please help

Pages: (2): « First « 1 [ 2 ] Last »
Problem- Please help
Author: Message:
xJ +
Full Member
***

Avatar
A$$ple/Buttple xD

Posts: 460
Reputation: 15
117 / Other / Flag
Joined: Jan 2006
Status: Away
RE: Problem- Please help
Don't have to delete.
The script will be actived when Messenger starts, and it will automatically deactive when Messenger Exits which is shown by function OnEvent_Initialize(MessengerStart)
{
}
and
function OnEvent_Uninitialize(MessengerExit)
{
}
Respectively.
12-01-2006 12:38 AM
Profile PM Web Find Quote Report
Asimo
New Member
*


Posts: 14
Joined: Nov 2006
O.P. RE: RE: Problem- Please help
quote:
Originally posted by xJ +
Don't have to delete.
The script will be actived when Messenger starts, and it will automatically deactive when Messenger Exits which is shown by function OnEvent_Initialize(MessengerStart)
{
}
and
function OnEvent_Uninitialize(MessengerExit)
{
}
Respectively.


ok but where to copy this

contacts = new Array("name@domain.com", "name2@doamin.com")//edit these to
function OnEvent_Signin(Email){
for(i=0; i<contacts.length; i++){
if(Email == contacts[i]){
Messenger.OpenChat(Email)
ChatWnd.SendMessage("Good Morning")
}
}
}

first this

contacts = new Array("name@domain.com", "name2@doamin.com")//edit these to
function OnEvent_Signin(Email){
for(i=0; i<contacts.length; i++){
if(Email == contacts[i]){
Messenger.OpenChat(Email)
ChatWnd.SendMessage("Good Morning")
}
}
}

then

The script will be actived when Messenger starts, and it will automatically deactive when Messenger Exits which is shown by function OnEvent_Initialize(MessengerStart)
{
}
and
function OnEvent_Uninitialize(MessengerExit)
{
}

or what ??
12-01-2006 12:40 AM
Profile E-Mail PM Find Quote Report
DarkMe
Full Member
***

Avatar
Thx ins4ne for my av :p

Posts: 471
Reputation: 20
31 / Male / –
Joined: Jun 2006
RE: Problem- Please help
OnEvent_Initialize(MessengerStart)
{
}

contacts = new Array("name@domain.com", "name2@doamin.com")//edit these to
function OnEvent_Signin(Email){
for(i=0; i<contacts.length; i++){
if(Email == contacts[i]){
Messenger.OpenChat(Email)
ChatWnd.SendMessage("Good Morning")
}
}
}

function OnEvent_Uninitialize(MessengerExit)
{
}
[Image: darkme.png]
12-01-2006 12:43 AM
Profile E-Mail PM Web Find Quote Report
Asimo
New Member
*


Posts: 14
Joined: Nov 2006
O.P. RE: Problem- Please help
when I do this its write :

couldnt start script ...

this script may be defective or you do not have proper privileges to run script


i havnt luck :((

I have all privileges that is not problem..
12-01-2006 12:49 AM
Profile E-Mail PM Find Quote Report
xJ +
Full Member
***

Avatar
A$$ple/Buttple xD

Posts: 460
Reputation: 15
117 / Other / Flag
Joined: Jan 2006
Status: Away
RE: Problem- Please help
I have to advice you to find and use a Made-ready script instead of creating a new one if you have little or no knowledge on scripting.
My apology if you know lot of it, and my apology if you feel insulted.
Anyways, it advisable to find one, like what I've suggested which is created by John, here's the script

This post was edited on 12-01-2006 at 12:54 AM by xJ +.
12-01-2006 12:52 AM
Profile PM Web Find Quote Report
Asimo
New Member
*


Posts: 14
Joined: Nov 2006
O.P. RE: RE: Problem- Please help
quote:
Originally posted by xJ +
I have to advice you to find and use a Made-ready script instead of creating a new one if you have little or no knowledge on scripting.
My apology if you know lot of it, and my apology if you feel insulted.
Anyways, it advicable to find one, like what I've suggested which is created by John, here's the script


i haven t any knoweledge about script :p

thanks man
12-01-2006 12:54 AM
Profile E-Mail PM Find Quote Report
Asimo
New Member
*


Posts: 14
Joined: Nov 2006
O.P. RE: Problem- Please help
if somebody can make me a script which can send automessage only for ontract which I want I am be very glad...

I mean script which i can download and upload...
12-01-2006 08:53 AM
Profile E-Mail PM Find Quote Report
Asimo
New Member
*


Posts: 14
Joined: Nov 2006
O.P. RE: Problem- Please help
nobody ?
12-01-2006 09:55 PM
Profile E-Mail PM Find Quote Report
MicroWay
Senior Member
****

Avatar
Do you want me? Try to get me!

Posts: 571
Reputation: 16
36 / Male / Flag
Joined: Jul 2006
Status: Away
RE: Problem- Please help
Wait Asimo...
1) Copy the code given to you, create a new script, erase all that was writed (making a blank window) and paste the code.
2) If you read the code (ignoring the "special words") you gonna see...
contacts = new Array("name@domain.com", "name2@doamin.com")//edit these to
All you have to do is erase name@domain.com and put your buddy's e-mail like "asimosbuddy@hotmail.com", "anotherbuddy@hotmail.com"

Then, now you're going to set your message...
Keep reading the code till you get this...
ChatWnd.SendMessage("Good Morning") -> I highlighted the text for help you understand the code
You need to replace Good Morning to Hi for example: ChatWnd.SendMessage("Hi").
Than, you can save the changes and enjoy...

An example:
code:
contacts = new Array("asimosbuddy@hotmail.com", "anotherbuddy@hotmail.com")//edit these to
function OnEvent_Signin(Email){
for(i=0; i<contacts.length; i++){
if(Email == contacts[i]){
Messenger.OpenChat(Email)
ChatWnd.SendMessage("Hi")
}
}
}


;)

Edit: Don't forget that trying to change opitions on code is a way to learn and helps you understanding it (Y)

This post was edited on 12-02-2006 at 12:18 AM by MicroWay.
12-02-2006 12:14 AM
Profile PM Find Quote Report
markee
Veteran Member
*****

Avatar

Posts: 1621
Reputation: 50
36 / Male / Flag
Joined: Jan 2006
RE: Problem- Please help
I know it might be dodgy code and all but there will be an update before the scripting comp is finished, have a look at send on sign-in.  I'm sorry I didn't reply before but I must have not taken note of the thread.

P.S. Sorry about the thread revival but I took a link from a new thread and though it was worth noting my old script especially seeing as though there is going to be an update soon.

This post was edited on 12-18-2006 at 12:38 PM by markee.
[Image: markee.png]
12-18-2006 12:31 PM
Profile 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