Shoutbox

Development Capabilities - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Messenger Plus! for Live Messenger (/forumdisplay.php?fid=4)
+---- Forum: Scripting (/forumdisplay.php?fid=39)
+----- Thread: Development Capabilities (/showthread.php?tid=61746)

Development Capabilities by Omnipotence on 06-27-2006 at 03:20 PM

Personally, Ive never used Javascript thoroughly although I have used Java. So I'm not absolutely sure what capabilites there are. Assuming I don't import any libraries or functions, I'd just like to know is string manipulation possible and more specifically substring?

As well, on attempting to unblock somebody by doing something like:
Contact.blocked = false;

Contact being the initiator. I made that line run right when I block someone on the chatwnd. Im wondering why it won't unblock. Is it perhaps that the iterator fails when I block them due to chat disabling or perhaps something else?

Any help is appreciated thank you.


RE: Development Capabilities by Lou on 06-27-2006 at 03:54 PM

quote:
Originally posted by Omnipotence
Javascript
It's not Javascript, it's Jscript. It's similiar, but not exactly the same.
quote:
Originally posted by Omnipotence
Contact being the initiator. I made that line run right when I block someone on the chatwnd. Im wondering why it won't unblock. Is it perhaps that the iterator fails when I block them due to chat disabling or perhaps something else?
I suggest you use something like this:
code:
OnEvent_ContactBlocked(
    [string] Email
);
Read the scripting documentation for these types of events.