Avatar

Level 3

Well, for me... 1024 * 768.  Below is an example of the layout that I used...

<s:VGroup x="0" y="0" id="menuBarVbox" width="100%" height="100%">

     <s:HGroup width="100%" height="100%" id="mainHBox">

     <s:VGroup width="20%" height="100%" id="chatArea" includeIn="standard_in,uninitialized">

     <s:Panel width="100%" height="35%" title="Speaker">

          <rtc:WebCamera id="camera" width="100%" height="100%" creationComplete="initCamera(event)"/>

     </s:Panel>

      <s:Panel id="" width="100%" height="35%" title="Chatting">

              <rtc:SimpleChat id="chat" width="99%" height="99%"/>

     </s:Panel>

     <s:Panel width="100%" height="30%" title="Participants" skinClass="newPanel">

     <s:controlBarContent>

          <rtc:AudioPublisher id="audioPub"  useEchoSuppression="true" />

          <rtc:AudioSubscriber id="audioSub"/>

          <mx:Button label="Ask Question" toggle="true" id="audioButt" click="(audioButt.selected) ? audioPub.publish() : audioPub.stop()"/>

     </s:controlBarContent>

          <rtc:Roster id=""

          width="100%"

          height="100%"

          showMenuButtons="true"

          selectable="true"

          showRoleHeaders="false"

          displaySelection="true"

          creationComplete="{studentList.addEventListener('userMenuItemClick', onMenuItemClick)};"

          menuDataProviderFunction="addMenuOptions"/>

     </s:Panel>

</s:VGroup>

<s:VGroup width="80%" height="100%" id="otherArea" width.expanded_out="100%" width.expanded_in="100%">

     blah, blah

</s:VGroup>