Avatar

Level 10

Hi,

can you just send a small code that does this. Because I built an example with the latest build for SImpleChat and it works fine for me for both player 9 and player 10 swc.

Here is the attached code . Please let us know whether this works for me.

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
    layout="absolute"
    backgroundColor="0xcccccc"
    width="800" height="500" 
    xmlns:rtc="AfcsNameSpace">
   
    <mx:Script>
        <![CDATA[
           
        ]]>
    </mx:Script>
   
    <!--
        You would likely use external authentication here for a deployed application;
        you would certainly not hard code Adobe IDs here.
    -->
    <rtc:AdobeHSAuthenticator
        id="auth"
        userName="username"
        password="password"  />
   
    <rtc:ConnectSessionContainer roomURL="url" id="cSession" authenticator="{auth}"
         width="100%" height="100%">
        <mx:VBox width="100%" height="100%" id="vBox">
            <rtc:SimpleChat width="200" height="200"/>
        </mx:VBox>
    </rtc:ConnectSessionContainer>
</mx:Application>

Thanks

Hironmay Basu