Hello,
i'm developping an activity, and i would like to get the incoming messages from WLM to use them in my activity. Is it possible and how
Thank you.
R.P.
Hello,
i'm developping an activity, and i would like to get the incoming messages from WLM to use them in my activity. Is it possible and how
Thank you.
R.P.
Activity and WLM
Umachandar Jayachandran - MS
Thank you J-Thread,
i tried to do what you wrote, but it don't work.
I've set ReceiveIM to True, and i added the followinf function in my activity:
function Channel_OnDataReceived()
{
// Instant message was received; inspect the value of Channel.IM
// If application has ReplaceIM permission, Channel.IM can be written to before it is displayed.
alert("Channel_OnDataReceived");
}
But when i receive an IM, the IM is displayed as usual, and the alert is not triggered.
Did i forgot something
R.P.
Romantic_touch
// Instant message was received; inspect the value of Channel.IM
// If application has ReplaceIM permission, Channel.IM can be written to before it is displayed.
alert(window.external.Channel.IM);
}
ScottPGlover
Ok, it work fine.
Thousand thanks J-Thread, you're the One :)
Good luck and have fun :p
KHadden
jag108
// Instant message was received; inspect the value of Channel.IM
// If application has ReplaceIM permission, Channel.IM can be written to before it is displayed.
}