Shoutbox

Sending Fake Events? - 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: Sending Fake Events? (/showthread.php?tid=85273)

Sending Fake Events? by Zero on 08-08-2008 at 07:13 PM

Hi again,

Is it possible to send Messenger Live! Plus an event, such as a contact sign-in, programmatically? It's a bit of a hassle always having to induce certain events in order to test code and developing would go a bit quicker if we didn't need to do this.

Thanks!
  Zero


RE: Sending Fake Events? by Spunky on 08-08-2008 at 08:18 PM

Yes

code:
function OnEvent_Initialize(){
       OnEvent_ContactSignin(/*ContactEmail*/);
}


Just use the event name and send the parameters manually
RE: Sending Fake Events? by Zero on 08-14-2008 at 07:49 PM

:$ *hangs head in shame* Wow. Just... wow. I can't believe I hadn't thought of doing that.

ANYWAYS - thnx for your reply! Most helpful!