Search found 3 matches

by Yotam
16 Aug 2010, 12:25
Forum: BBCodes
Topic: Blinking BBCode
Replies: 12
Views: 28015

Re: Blinking BBCode

you can also do it simpler like that:

Code: Select all

<script type="text/javascript">
var x = "{INTTEXT}";
document.write(x.blink());
</script>
by Yotam
16 Aug 2010, 12:21
Forum: Submit a BBCode
Topic: BBCODE| text loop/text repeats itself/double text
Replies: 2
Views: 6885

Re: BBCODE| text loop/text repeats itself/double text

http://ephpbb.info/viewtopic.php?f=20&t=105
the loop is "רואה אלירם זה עובד" it loops 5 times.
by Yotam
15 Aug 2010, 16:08
Forum: Submit a BBCode
Topic: BBCODE| text loop/text repeats itself/double text
Replies: 2
Views: 6885

BBCODE| text loop/text repeats itself/double text

author: Yotam this bbcode doubles your text in it how many times you want. bbcode: [loop={NUMBER}]{INTTEXT}[/loop] html: <script type="text/javascript"> var x = 0; for (x=0;x<={NUMBER};x++) { document.write("{INTTEXT}" + " "); } </script> example: [loop=5]text loop XD[/...