FlashChat questions

1. Is there a way to have the flashchat (www.tufat.com) window appear in the iframe instead of opening a new window? I tried changing the target to _self and to iframe but neither worked for me.

Start FlashChat
To answer #1: One way to get the results you want is to use an external HTML page to call up your Flashchat module, and then use the file wrapper mod to call that HTML page to wrap it within your site.

The page would look like this:

Code

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>FlashChat</title>
</head>
<body>
<table width="650">
 <tr>
  <td>
   <br><br><br><br><br>
<div id="FlashChat" class="module">
<center><OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="650" HEIGHT="450"  id="flashchat" ALIGN=""><PARAM NAME="FlashVars" VALUE=""><PARAM NAME="movie" VALUE="modules/FlashChat/preloader.swf"><PARAM NAME="quality" VALUE="high"><PARAM NAME="menu" VALUE="true"><PARAM NAME="scale" VALUE="noscale"><PARAM NAME="salign" VALUE="LT"><PARAM NAME="BASE" VALUE="modules/FlashChat/"><EMBED src="modules/FlashChat/preloader.swf" FlashVars="" menu="false" quality="high" scale="noscale" salign="LT" WIDTH="650" HEIGHT="450" NAME="flashchat" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer" BASE="modules/FlashChat/"></EMBED></OBJECT><script type="text/javascript" src="modules/FlashChat/js.php"></script></center>
</div>
</td>
</tr>
</table>
</body>
</html>


This code is assuming that you have installed FlashChat as a module as directed in the instructions per the author. The link using the wrapper mod should look like this:

http://www.yoursite.com/wrap.php?file=FlashChat.htm

Or even

http://www.yoursite.com/FlashChat.htm

If you are using the short URL method for calling the wrapped page.

Good Luck!

Budda-san