quote:
Originally posted by foaly
it is my own private script,
it's being called from:
Javascript code:
function OnEvent_ChatWndReceiveMessage(ChatWnd,Origin,Message,MessageKind){
if(Message.charAt(0) == "!"){
parseCommands(Message,ChatWnd,Origin);
//(..)
case'link':
setLink(params,Origin,wnd);
break;
//(..)
if(linkdoel.substr(0,7) == "http://" || linkdoel.substr(0,6) == "mms://"){
Messenger.MyPersonalMessage = "(" + Origin + ") " + linktekst + " -> http://link.foaly.nl";
can a skin influence the way the code works?
Wouldn't have thought so. Only if the PSM element in the contact list has been moved out of it's containers. Try without a skin to find out; I'm going to test it on the OnChatWndReceived_Event
EDIT:
Javascript code:
function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message){
if(Origin !== Messenger.MyName){
Messenger.MyPersonalMessage = Message.split(" ")[0];
}
}
This works for me without a skin
EDIT2:
Also works fine with Evo and Metro as the current skin (Haven't got any skins that move the PSM anywhere though I think)