You mean, you want something to happen when you click the toast of your script?
if so:
code:
[boolean] DisplayToast(
[string] Title,
[string] Message,
[string,optional] SoundFile,
[string,optional] Callback,
[var,optional] CallbackParam
);
Callback is the function it will call when clicked and the
CallbackParam is the parameter sent to it, so you make one like this for example:
code:
MsgPlus.DisplayToast("TOAST", "Click Me!", "", "onEventToast_Click", Messenger.MyEmail);
function onEventToast_Click(sParam)
{
if (sParam == "xxx@yyy.zzz")
{
//Do Something
}
}
If you meant something else... please explain