Ich weiß nicht, wie's anderen ergeht, aber mich nervt es immer ein wenig, daß ich, statt einfach einen Button zu drücken, immer die Youtube-Tags eingeben muss.
Hab da mal kurz was gebastelt. Das wäre jetzt nichts, wo man ein ganzes Team bräuchte, um das zu realisieren...
In das Formulartemplate muss nur das rein:
<img src="bbcode_youtube.gif" alt="Youtube-Video einfügen" title="Youtube-Video einfügen" onclick="bbcode(document.bbform,'YOUTUBE',' http://')" onmouseover="this.style.cursor='hand';" border="0" />
Und in der bbcode.js nur das geändert werden:
...
function bbcode(theForm, theTag, promptText) {
if ( normalMode(theForm) || (theTag=="IMG") || (theTag == "YOUTUBE")) {
var selectedText = getSelectedText(theForm);
if (promptText == '' || selectedText != '') promptText = selectedText;
inserttext = prompt((((theTag == "IMG") || (theTag == "YOUTUBE")) ? (img_prompt) : (tag_prompt)) + "\n[" + theTag + "]xxx[/" + theTag + "]", promptText);
if ( (inserttext != null) && (inserttext != "") ) {
addText("[" + theTag + "]" + inserttext + "[/" + theTag + "]", "", false, theForm);
}
}
...

