|
This parameter helps the chat client to load a defined language file.
init_lang in html code will disable the language value in the client.xml because init_lang has a higher priority.
In this way, your dynamic web application can choose to show the local language for specific users in any country.
For example:
<script language=¡°javascript¡±>
init_lang=¡±en¡±;
openSWF('123flashchat.swf','634','476');
</script>
<noscript>
<DIV id=¡°flashchat¡±>
<OBJECT classid=¡°clsid:D27CDB6E-AE6D-11cf-96B8-444553540000¡± codebase=¡°http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,19,0¡± WIDTH=¡°634¡± HEIGHT=¡°476¡± id=¡°topcmm_123flashchat¡±>
<PARAM NAME=movie VALUE=¡°123flashchat.swf?init_lang=en¡±>
<PARAM NAME=quality VALUE=¡°high¡±>
<PARAM NAME=¡°menu¡± value=¡°false¡±>
<EMBED src=¡°123flashchat.swf? init_lang=en¡± quality=high menu=false WIDTH=¡°634¡± HEIGHT=¡°476¡± TYPE=¡°application/x-shockwave-flash¡± PLUGINSPAGE=¡°http://www.macromedia.com/go/getflashplayer¡± scale=¡°noscale¡± name=¡°topcmm_123flashchat¡± swLiveConnect=¡°true¡±></EMBED>
</OBJECT>
</DIV>
123flashchat.swf will then automatically load the language package: lang/language_en.xml
updated at 2008-2-28 |