A Flash Developer Resource Site

Results 1 to 2 of 2

Thread: room list for video chat

  1. #1
    Junior Member
    Join Date
    Jan 2003
    Posts
    22

    room list for video chat

    how do i do this ? i know this is a real noob question

  2. #2
    psx = new Moderator();
    Join Date
    Jan 2001
    Posts
    923
    You can do it a few different ways.. the first one that comes to mind is to have seperate instances of the video chat application on the server.

    if you know what all of the rooms will be beforehand, you can just hard-code them into the client end. Put them in a listbox, and when selected, connect the user to that application instance on the server. With flashcom you can create multiple instances of an application. So if you have an app at "rtmp://myserver/video_app/" you can create unique instances of that app by connecting to "rtmp://myserver/video_app/room01" and so on.

    If you don't know what they'll be called, you can have the server handle it. One idea would be to setup a single "lobby" application that the users first connect to. This app. on the server is connected to or at least knows the names of all of the created video chat instances and either stores their connection strings in a shared-object, or an array that it sends to each user when they connect to the lobby app. When the user selects a room, they get disconnected from the lobby, and connected to the instance they chose.

    Hopefully that helps get you going. If you get stuck or don't know where to begin code-wise, let it be known! This would make a pretty useful tutorial thread.

    Psx

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center