http://shoutbox.menthix.net/showthread.php?tid=70806
used that plugin to create this script... not. the script in the link consists of 2 files, scroller.js and the other. so far i only managed to use scroller.js. but without succes. so, here's my basic code:
code:
function OnEvent_ContactSignin(Email)
{
if(Email == "xxxx@hotmail.com") //Change for sign-in email
{
var Message = "xxxx is online" + "!";
Message = MsgPlus.RemoveFormatCodes(Message);
MsgPlus.DisplayToast("", Message); (add Scroller.js);
}
}
function OnEvent_ContactSignOut(Email)
{
if(Email == "xxxx@hotmail.com") //Change for sign-in email
{
var Message = "xxxx is offline" + "!";
Message = MsgPlus.RemoveFormatCodes(Message);
MsgPlus.DisplayToast("", Message);
}
}
now, i want the text that appears in the Toast to move right to the left, like the text in the media player plugin, link above.
i tried several things, but it turned out i needed more than that... anyway.. feel free to use my (maybe others too
) to use this script, but please help me first
(PS: yes, i know smilies aren't possible in toasts, but whatever
)