Ah yeah, sorry about that. I forgot about the status being 0 when you're not signed (so the code isn't executed). What I actually meant was:
code:
function OnEvent_Initialize(MessengerStart) {
if(!MessengerStart) {
OnEvent_SigninReady(Messenger.MyEmail); //Call the event like a normal function
}
}
function OnEvent_SigninReady(Email) {
//Original code for OnEvent_Initialize goes here
}
Cookie's code works exactly the same, so it doesn't really matter.