Welcome Guest [Log In] [Register]
Viewing Single Post From: Add Flash Tag to your list of BBCode Tags
Dan T
Member Avatar
document.createElement("Alcohol")
[ *  * ]
place this under the < !--Board -->

doesnt really need a preview it just added a button which allows you to easily use the flash BBCode.

Code:
 
<script type="text/javascript">
//created by Holysavior of ZBCode and Javascriptin.com

if(location.href.match(/\/post\//i) ){
$("#c_bbcode").append("<button type='button' id='flash' onclick='workflash()'>Flash</button>")
$("#flash").insertBefore("#c_bbcode select");

function workflash() {
var height = prompt("Height of the File?");
var width = prompt("Width of the File?");
var url = prompt("URL of the File?");

document.forms['posting'].post.value="[flash="+width+","+height+"]"+url+"[/flash]"
}
}
</script>

Offline Profile Quote Post
Add Flash Tag to your list of BBCode Tags · User Created Codes