und zwar möchte ich von afterworkchat.de den Chat auf das Portal einbinden in eine statische Seite, und diese dann in in die Navigation verlinken.
Zwar weiß ich wie man YouTube Videos mit dem BBCode macht (BBCode + HTML Referenz], aber wie funktioniert es dann bei kompletten Chatbefehlen wie diese von afterworkchat?
Müsste ich den HTML Code zerlegen ohne aktive Befehle, um diese als HTML Referenz zum BBCode anzulegen, oder muss ich [HTML]{Inhalt}[/HTML] und als HTML Referenz <html>Inhalt</html> machen?
Da es aber so aussehen wird:
Code: Alles auswählen
<iframe src="http://flash.afterworkchat.de/1.0/FlashChat.swf?host=flash.afterworkchat.de&languagePath=http://flash.afterworkchat.de/1.0/language/&emoticonPath=http://flash.afterworkchat.de/1.0/emoticons/&accessKey=54a2846a460ae1703ac690d21551b997&policyPort=9000&nick=Chat-Besucher%25&realname=http://www.AfterWorkChat.de&autojoin=%23help&showNickSelection=true&showIdentifySelection=false&language=de&quitMessage=Flash Webchat hosted by www.AfterWorkChat.de&soundAlerts=true&fontSize=12&showJoinPartMessages=true&showTimestamps=true&showRegisterNicknameButton=false&showNickChangeButton=true&showOptionsButton=true&rememberNickname=true" style="width:800px; height:400px;"></iframe>
HTML-Chat:
Code: Alles auswählen
<html>
<head>
<title>Flash Webchat </title>
<script type="text/javascript" src="http://flash.afterworkchat.de/0.9.9.3/swfobject.js"></script>
<script type="text/javascript">
var params = {};
params.host = "flash.afterworkchat.de";
params.languagePath = "http://flash.afterworkchat.de/1.0/language/";
params.emoticonPath = "http://flash.afterworkchat.de/1.0/emoticons/";
params.policyPort = "9000";
params.accessKey = "54a2846a460ae1703ac690d21551b997";
params.identifyMessage = "NickServ:Dieser Nickname ist registriert und gesch";
params.nick = "Chat-Besucher%25";
params.realname = "http://www.AfterWorkChat.de";
params.autojoin = "#help";
params.showNickSelection = "true";
params.showIdentifySelection = "false";
params.language = "de";
params.quitmsg = "Flash Webchat hosted by www.AfterWorkChat.de";
params.soundAlerts = "true";
params.fontSize = "12";
params.showJoinPartMessages = "true";
params.showTimestamps = "true";
params.showRegisterNicknameButton = "false";
params.showNickChangeButton = "true";
params.showOptionsButton = "true";
params.rememberNickname = "true";
swfobject.embedSWF("http://flash.afterworkchat.de/1.0/FlashChat.swf", "FlashChat", "100%", "100%", "10.0.0", "http://flash.afterworkchat.de/expressinstall.swf", params, null);
</script>
</head>
<body>
<div id="FlashChat" style="height:100%; text-align:center;">
<p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://flash.afterworkchat.de/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>
</div>
</body>
</html>

Danke im Voraus
Edit: Habe nun Ajax genommen, der erfüllt dass was ich haben will
