[release] No Response |
Author: |
Message: |
saralk
Veteran Member
Posts: 2598 Reputation: 38
35 / /
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)
Attachment: NoResponse.plsc (1 KB)
This file has been downloaded 497 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 |
|
|
Jimbo
Veteran Member
Posts: 1650 Reputation: 18
32 / /
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 |
|
|
Felu
Veteran Member
Posts: 2223 Reputation: 72
30 / /
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
I don't think Contacts would prefer to be Nudge ed, so in my opinion its not a good script overall but some people might like to with it .
This post was edited on 08-26-2006 at 11:58 AM by Felu.
|
|
08-26-2006 11:57 AM |
|
|
Jimbo
Veteran Member
Posts: 1650 Reputation: 18
32 / /
Joined: Jul 2006
|
RE: [release] No Response
please make the configuration window, saralk
its a great script
|
|
08-27-2006 05:26 PM |
|
|
vaccination
Veteran Member
Posts: 2513 Reputation: 43
32 / / –
Joined: Apr 2005
|
RE: [release] No Response
Tis nice but 30 seconds. :\
* vaccination changes to something more like 5- 10 minutes
|
|
08-27-2006 05:33 PM |
|
|
Thor
Veteran Member
Awwwwwwww.
Posts: 1118 Reputation: 42
32 / – /
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
Ok script, a config window should go quick.. But it's not needed for me
|
|
08-27-2006 05:57 PM |
|
|
artfuldodga
Full Member
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 |
|
|
nuclide
New Member
Posts: 6
43 / /
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 |
|
|
TheGuruSupremacy
Full Member
Posts: 367 Reputation: 19
34 / /
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 |
|
|
nuclide
New Member
Posts: 6
43 / /
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 |
|
|
Pages: (2):
« First
[ 1 ]
2
»
Last »
|
|