- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
I can second that there is no Flex 4 + ConnectSessionContainer issue.
Also, for what it's worth, the following code works fine for me (with pods inside or outside of the ConnectSessionContainer)
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx"
xmlns:authentication="com.adobe.rtc.authentication.*"
xmlns:session="com.adobe.rtc.session.*"
xmlns:collaboration="com.adobe.rtc.collaboration.*"
xmlns:pods="com.adobe.rtc.pods.*">
<session:ConnectSessionContainer width="100%" height="100%" roomURL="...">
<session:authenticator>
<authentication:AdobeHSAuthenticator protocol="rtmfp" password="..." userName="..." />
</session:authenticator>
<mx:HBox width="100%" height="100%">
<mx:VBox width="25%" height="100%">
<pods:Roster width="100%" height="50%"/>
<pods:WebCamera width="100%" height="50%"/>
</mx:VBox>
<pods:SharedWhiteBoard width="75%" height="100%"/>
</mx:HBox>
</session:ConnectSessionContainer>
</s:Application>
So no issue with *Box components. My guess is, if you're seeing a white screen, your room connection/authentication is hanging? Sure nothing weird is happening concurrently (like someone else in the room that's causing troubles with your role, etc) ?