I need help with these custom BBcodes!
Blink, for blinking text
--
HTML code: <blink><b><font>{param}</font></b></blink>
--
--
BBcode supplement: [Blink]{Param}[/Blink]
--
I also need - scrolling text and other cool ideas
Offline
I already posted the code for [blink] on allforums, so lemme find scrolling text...
Offline
Say hello to my über-complex, Javascript-filled multiple-choice [align] BBCode!
BBCode usage:
[align={IDENTIFIER}]{TEXT}[/align]HTML replacement:
<script type="text/javascript">
var align = "{IDENTIFIER}";
if (align == 'c') {
document.write('<div style="text-align: center;">{TEXT}<\/div>');
} else {
if (align == 'l') {
document.write('<div style="text-align: left;">{TEXT}<\/div>');
} else {
if (align == 'r') {
document.write('<div style="text-align: right;">{TEXT}<\/div>');
} else {
if (align == 'j') {
document.write('<div style="text-align: justify;">{TEXT}<\/div>');
} else {
document.write('<strong>Error: [align] tag used incorrectly. Use l, r, c, or j after the = to align the text to the left, right, or center, or justify it, respectively.<\/strong>')
}
}
}
}
</script>If you want more, just check the "Testing out new BBCode" thread on my site and look at the HTML source
Offline