[request] Flashing Keyboard LED's when message received |
Author: |
Message: |
Rik
Senior Member
Posts: 752 Reputation: 29
31 / /
Joined: Feb 2005
Status: Away
|
RE: [request] Flashing Keyboard LED's when message received
i'm loving this script but could you make it not to flash when the window is open?
|
|
06-28-2006 11:23 AM |
|
|
DarkRaider
Junior Member
Posts: 61
39 / / –
Joined: Mar 2005
|
O.P. RE: [request] Flashing Keyboard LED's when message received
i'll try to add al these options to the config window.
ScrollLock on/off
NumLock on/off
CapsLock on/off
Flash when Messenger is locked on/off
Stop flashing when chatwindow is focused
or stop flashing when you enter a text..
@Dark_Angel_Pt: i can set a checkbox in the config window, but if you want to turn this script off, i think it's easier to just uncheck the checkbox of the script itself
For now, i'll start with this..
Anything else to add?
This post was edited on 06-28-2006 at 11:34 AM by DarkRaider.
|
|
06-28-2006 11:32 AM |
|
|
Dark_Angel_Pt
Junior Member
Posts: 25
41 / / –
Joined: Jun 2006
|
RE: RE: [request] Flashing Keyboard LED's when message received
quote: Originally posted by DarkRaider
@Dark_Angel_Pt: i can set a checkbox in the config window, but if you want to turn this script off, i think it's easier to just uncheck the checkbox of the script itself
For now, i'll start with this..
Anything else to add?
I know i can disable the script but it was easier if i could just turn it off in the plus contact list button instead of having to go to plus option, scripts and disable it.
Just one question... does this script detects when someone is talking to you and you already had a conversation window opened or is it just when someone opens the conversation window?
If you try and don't succeed, cheat. Repeat until caught. Then lie.
|
|
06-28-2006 11:38 AM |
|
|
DarkRaider
Junior Member
Posts: 61
39 / / –
Joined: Mar 2005
|
O.P. RE: [request] Flashing Keyboard LED's when message received
ah, in the plus! menu.. ok, that's a good idea
the version that i have now, is activated when you receive a message.. and if the Origin is someone else, but this isn't really necessary..
maybe in future versions i can make it possible to select users for who it has to be activated, but for now, i'm going to make it like i said above
|
|
06-28-2006 11:46 AM |
|
|
novolo
Junior Member
L2Luna GM
Posts: 67
– / /
Joined: May 2006
|
RE: [request] Flashing Keyboard LED's when message received
Hey silentdragon, i dont seem to be able to make the email verificaion work
the code is accepted and everything, but when i send a message from the email i want nothing happens...
this is the code:
code: function OnEvent_ChatWndReceiveMessage(Wnd, Origin,Message,MessageKind){
var contacts = new Enumerator(Wnd.Contacts);
for (; !contacts.atEnd(); contacts.moveNext()){
var contact = contacts.item();
switch(contact){
case 'remotocasa@hotmail.com' :
MsgPlus.AddTimer('check',200);
break;
}
}
}
the thing is that nothing happens...
whats wrong?
EDIT: this is something i did, but doesn't work either...
code: function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message, MessageKind){
var Contact = ChatWnd.Contacts;
var e = new Enumerator(Contact);
if (e < 2){
if (Contact.Email == 'remotocasa@hotmail.com') {
MsgPlus.AddTimer('check',200);
}
}
}
This post was edited on 06-28-2006 at 12:35 PM by novolo.
|
|
06-28-2006 12:32 PM |
|
|
orido
New Member
Posts: 3
36 / / –
Joined: Jun 2006
|
RE: [request] Flashing Keyboard LED's when message received
hey nice script. can i make a request? Is it possible to make the light go back to the "on" setting once the conversation is restarted? And i use a logitech keyboard so i don't have a scroll lock key, so i'm using the num lock. I'd be handy to use the F Mode led instead but i don't know what the code to that is. Can anyone gimme a hand?
|
|
06-28-2006 01:18 PM |
|
|
MGrove03
New Member
Posts: 10
Joined: Jun 2006
|
RE: [request] Flashing Keyboard LED's when message received
hey you know how when you press all 4 arrow buttons it starts to make a beeping sound? is it possible for it to make that beeping sound when a message is received because i do not always have my speakers on
|
|
06-28-2006 02:44 PM |
|
|
novolo
Junior Member
L2Luna GM
Posts: 67
– / /
Joined: May 2006
|
RE: [request] Flashing Keyboard LED's when message received
hey, one thing i've noticed... it work fine when someone sends you a message, but when you're already talking to that person, if he or she sends you another message it starts blinking again...
it blinks everytime you get a message and it only stops when you start typing or press capslock...
any ideas how to blink only for the first new message of every conversation?
|
|
06-28-2006 02:48 PM |
|
|
djnerve
Junior Member
!-STE06-!
Posts: 46
35 / / –
Joined: Jun 2006
|
RE: RE: [request] Flashing Keyboard LED's when message received
quote: Originally posted by MGrove03
hey you know how when you press all 4 arrow buttons it starts to make a beeping sound? is it possible for it to make that beeping sound when a message is received because i do not always have my speakers on
heres vb code
code: Declare Function Beep Lib "kernel32.dll" ( _
ByVal dwFreq As Long, _
ByVal dwDuration As Long) As Long
|
|
06-28-2006 02:56 PM |
|
|
upsfeup
Junior Member
Posts: 67
Joined: Feb 2005
|
RE: [request] Flashing Keyboard LED's when message received
So in Jscript:
code: Interop.Call('kernel32', 'Beep', frequency , duration);
Frequency in hertz between 37 through 32,767 (0x25 through 0x7FFF).
Duration in milliseconds.
And.. it locks the process in the duration of the beep. So make it short!
This post was edited on 06-28-2006 at 04:36 PM by upsfeup.
|
|
06-28-2006 04:35 PM |
|
|
Pages: (10):
« First
«
1
2
3
[ 4 ]
5
6
7
8
»
Last »
|
|