O.P. RE: Check incoming files
Sorry, my question was not so clear.
I was asking if it's possible to display file extension/name/size in a Messenger Plus! live Script window.
I already know functions like:
function OnEvent_ChatWndReceiveMessage()
{
// Function Here
}
But is it possible to do something like?: (dummy function)
function OnEvent_ChatWndReceiveFile()
{
MsgPlus.DisplayToast("Test","File Size: " + Fsize + "","","Function");
}
|