View Single Post
  #2 (permalink)  
Old 10-28-2004, 01:20 PM
imported_admin imported_admin is offline
Senior Member
 
Join Date: Jan 2001
Posts: 413
Default Re:Opening 123Flash Chat in a new window...

it's the javascript code to open the chat window,

for example:

if your chat page with the flash client is:
http://yourwebsite/chat.html

and you want to open the chat page in this page:
http://yourwebsite/abc.html

first, please insert the below javascript code to abc.html file:


Code:
<script language="Javascript" type="text/javascript">
<!--
function openChat()
{
window.open('http://yourwebsite/chat.html', '_123flashchat', 'HEIGHT=476,resizable=yes,WIDTH=634');;
}
//-->
</script>
then in abc.html , add a link like this:

Code:
<a href="javascript:openChat()">Chat</a>