- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
Hi,
There was a bug on our side which was fixed recently and would be updated in the next drop of the SDK.
I am giving you the fix. You need to make the following change in your SimpleChat.as and link your project to the source files instead of swc. Once the next drop of SDK comes in, you can continue back to using your swc.
You need to update the onHistoryScroll function in SimpleChat with the one below
protected function onHistoryScroll(p_evt:ScrollEvent):void
{
if ( p_evt.detail == ScrollEventDetail.THUMB_TRACK ) {
_detachedScrolling.reset();
_detachedScrolling.start();
}
}
Don't forget to do import mx.events.ScrollEventDetail; on the top else you will get compile errors.
Hope this fixes your problem
Thanks
Regards
Hironmay Basu
Views
Replies
Total Likes