What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [release] No Response

Pages: (2): « First [ 1 ] 2 » Last »
[release] No Response
Author: Message:
saralk
Veteran Member
*****

Avatar

Posts: 2598
Reputation: 38
35 / Male / Flag
Joined: Feb 2003
O.P. [release] No Response
This is a very simple script that will send a nudge to a user who doesn't reply to a message you send within 30 seconds.
You can specifiy the time and the message, but for now you'll have to edit the code, i'll make a configuration window later, if I have time, and if there is enough interest.

Features Coming Soon
  • Menu, for easy access to settings
  • Per contact settings (or at least, switching it on and off per contact)

.plsc File Attachment: NoResponse.plsc (1 KB)
This file has been downloaded 480 time(s).

This post was edited on 08-26-2006 at 12:08 PM by saralk.
The Artist Formerly Known As saralk
London · New York · Paris
Est. 1989
08-26-2006 11:39 AM
Profile PM Find Quote Report
Jimbo
Veteran Member
*****

Avatar

Posts: 1650
Reputation: 18
31 / Male / Flag
Joined: Jul 2006
RE: [release] No Response
wicked script thanks

would love to see the update with the configuration window
08-26-2006 11:43 AM
Profile E-Mail PM Find Quote Report
Felu
Veteran Member
*****


Posts: 2223
Reputation: 72
29 / Male / Flag
Joined: Apr 2006
Status: Away
RE: [release] No Response
quote:
Originally posted by saralk
This is a very simple plugin that will send a nudge to a user who doesn't reply to a message you send within 30 seconds.
You can specifiy the time and the message, but for now you'll have to edit the code, i'll make a configuration window later, if I have time, and if there is enough interest.
Script [Image: dodgy.gif]

I don't think Contacts would prefer to be Nudge :spam:ed, so in my opinion its not a good script overall but some people might like to :spam: with it :p.

This post was edited on 08-26-2006 at 11:58 AM by Felu.
08-26-2006 11:57 AM
Profile E-Mail PM Web Find Quote Report
Jimbo
Veteran Member
*****

Avatar

Posts: 1650
Reputation: 18
31 / Male / Flag
Joined: Jul 2006
RE: [release] No Response
please make the configuration window, saralk

its a great script
08-27-2006 05:26 PM
Profile E-Mail PM Find Quote Report
vaccination
Veteran Member
*****

Avatar

Posts: 2513
Reputation: 43
32 / Male / –
Joined: Apr 2005
RE: [release] No Response
Tis nice but 30 seconds. :\

* vaccination changes to something more like 5- 10 minutes
[Image: jumbled.png]
08-27-2006 05:33 PM
Profile PM Find Quote Report
Thor
Veteran Member
*****

Avatar
Awwwwwwww.

Posts: 1118
Reputation: 42
31 / – / Flag
Joined: May 2006
RE: [release] No Response
quote:
Originally posted by vaccination
Tis nice but 30 seconds. :\

* vaccination changes to something more like 5- 10 minutes
That's because of you sudden tea time :P


Ok script, a config window should go quick.. But it's not needed for me :P :)
:plus4: Translation guidelines for Messenger Plus! Live
I'm no longer around this town, but I miss the community dearly. You can always find me lurking in #banana, or at
nitrolinken.net.
08-27-2006 05:57 PM
Profile PM Web Find Quote Report
artfuldodga
Full Member
***

Avatar

Posts: 178
Joined: Mar 2006
RE: [release] No Response
Suggestions.

+ Configuration Window
+ Contact Specific (Enable for Specific Contacts Option)
+ Use Seconds for Setting the Timer

Also, does the script start the timer from when you last say something? ... say its set to nudge after 10 minutes if theres no responce from the Contact to your Message Sent 10 Min ago? I would guess it works this way.

Edit :) I just noticed your original post, you are already on top of some things I mentioned.

This post was edited on 08-27-2006 at 06:14 PM by artfuldodga.
08-27-2006 06:13 PM
Profile PM Find Quote Report
nuclide
New Member
*

Avatar

Posts: 6
43 / Male / Flag
Joined: Jun 2007
RE: [release] No Response
after nudge I want to write automatically "You didn't response me after 30 sec. " How can I add this..
06-18-2007 07:56 AM
Profile E-Mail PM Find Quote Report
TheGuruSupremacy
Full Member
***

Avatar

Posts: 367
Reputation: 19
33 / Male / Flag
Joined: Nov 2006
RE: [release] No Response
quote:
Originally posted by nuclide

after nudge I want to write automatically "You didn't response me after 30 sec. " How can I add this..

code:
var SettingMessage;
var SettingTimer;

function OnEvent_Initialize(MessengerStart)
{
    SettingMessage = "/nudge";
    SettingTimer = 30000;
}

function OnEvent_Timer(TimerID)
{
    Debug.Trace("Timer Launched");
    Messenger.OpenChat(TimerID).SendMessage(SettingMessage)
    Messenger.OpenChat(TimerID).SendMessage("You didn't response me in 30 sec.");
}

function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message, MessageKind)
{
    if (Origin != Messenger.MyName) {
    Debug.Trace("Message Received");
    var Contacts = ChatWnd.Contacts;
    var e = new Enumerator(Contacts);
    for(; !e.atEnd(); e.moveNext()) {
        var Contact = e.item();
        Debug.Trace(" " + Contact.Email);
    }
    MsgPlus.CancelTimer(Contact.Email);
    Debug.Trace("Timer Cancelled");
    }
    else {
    if (Message != SettingMessage)
    {
    var Contacts = ChatWnd.Contacts;
    var e = new Enumerator(Contacts);
    var NoContacts = 0;
    for(; !e.atEnd(); e.moveNext()) {
        var Contact = e.item();
        Debug.Trace(" " + Contact.Email);
        NoContacts = NoContacts + 1;
    }
    Debug.Trace(NoContacts);
    if (NoContacts == 1) {
        MsgPlus.AddTimer(Contact.Email, SettingTimer);
        Debug.Trace("Timer Started");
    }
    }
    }
}

06-18-2007 11:11 AM
Profile PM Find Quote Report
nuclide
New Member
*

Avatar

Posts: 6
43 / Male / Flag
Joined: Jun 2007
RE: RE: [release] No Response
quote:
Originally posted by TheGuruSupremacy
quote:
Originally posted by nuclide

after nudge I want to write automatically "You didn't response me after 30 sec. " How can I add this..

code:
var SettingMessage;
var SettingTimer;

function OnEvent_Initialize(MessengerStart)
{
    SettingMessage = "/nudge";
    SettingTimer = 30000;
}

function OnEvent_Timer(TimerID)
{
    Debug.Trace("Timer Launched");
    Messenger.OpenChat(TimerID).SendMessage(SettingMessage)
    Messenger.OpenChat(TimerID).SendMessage("You didn't response me in 30 sec.");
}

function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message, MessageKind)
{
    if (Origin != Messenger.MyName) {
    Debug.Trace("Message Received");
    var Contacts = ChatWnd.Contacts;
    var e = new Enumerator(Contacts);
    for(; !e.atEnd(); e.moveNext()) {
        var Contact = e.item();
        Debug.Trace(" " + Contact.Email);
    }
    MsgPlus.CancelTimer(Contact.Email);
    Debug.Trace("Timer Cancelled");
    }
    else {
    if (Message != SettingMessage)
    {
    var Contacts = ChatWnd.Contacts;
    var e = new Enumerator(Contacts);
    var NoContacts = 0;
    for(; !e.atEnd(); e.moveNext()) {
        var Contact = e.item();
        Debug.Trace(" " + Contact.Email);
        NoContacts = NoContacts + 1;
    }
    Debug.Trace(NoContacts);
    if (NoContacts == 1) {
        MsgPlus.AddTimer(Contact.Email, SettingTimer);
        Debug.Trace("Timer Started");
    }
    }
    }
}





Thanx before I try like this but when it says "You didn't response me in 30 sec." after timer activated and then nudge again.. if person no response it will goes on because I always writing message automatically..
06-18-2007 01:32 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