I just completed my first script, the Upload Completed Script, it notifies if a sent upload has just completed, but the thing is, my friend helped me test, and when he sent me a totally blank file and it completed the toast window never showed!
code:
function OnEvent_Initialize(MessengerStart)
{
Debug.Trace("Hello World!");
}
function OnEvent_Uninitialize(MessengerExit)
{
}
function OnEvent_UploadFileComplete(Server, Dest, SrcFile, Success)
{
var Message = "Upload Complete! Success " + Messenger.MyName + "!";
Message = MsgPlus.RemoveFormatCodes(Message);
MsgPlus.DisplayToast("", Message);
}
Please Help