You can have your users to skip room list page and auto-login a specific chat room once they are logged on. As we stated before, you can insert 123 flash chat room into your webpage (static or dynamic) by adding script of a flash object tag. Then Parameter "init_room" attached after "123flashchat.swf" can help you with auto-login-room. Parameter | value | type | Description | init_room | Room_id | number | is room ID (init_room=) instead of room name. | init_room_pwd | Room password | string | If the room is password protected, you need to set init_room_pwd ( init_room_pwd=) Of course init_room_pwd is not obligatory. |
Sample: If user name = myusername, password = mypassword, room id= 1001, the code you should add into your html will be as follows: You can see this parameter must be used together with the other 2 parameters: init_user and init_password, or it won't be effective. Then what if user login as guest? You can leave the init_password to blank like the following sample: Â… src="123flashchat.swf?init_user=myusername&init_password=&init_room=1001" |