FF6 Hacking
New MyCode tags! - Printable Version

+- FF6 Hacking (https://www.ff6hacking.com/forums)
+-- Forum: Discussion Forums (https://www.ff6hacking.com/forums/forum-5.html)
+--- Forum: Vector, Imperial Capital (https://www.ff6hacking.com/forums/forum-58.html)
+---- Forum: Announcements (https://www.ff6hacking.com/forums/forum-60.html)
+---- Thread: New MyCode tags! (/thread-2309.html)



New MyCode tags! - madsiur - 07-30-2013

Here is some new MyCode tags you can use in your posts!

[hrc]#2B60DE[/hrc]
1) Highlight text

[hl=green]Sample 2[/hl]

[hl=green]Sample 2[/hl]

[hrc]#2B60DE[/hrc]
2) Blinking text

[blink]Amazing![/blink]

[blink]Amazing![/blink]

[hrc]#2B60DE[/hrc]
3) Subscript text

Examplelow

Example[sub]low[/sub]

[hrc]#2B60DE[/hrc]
4) Superscript text

Examplehigh

Example[sup]high[/sup]

[hrc]#2B60DE[/hrc]
5) Acronym

Title

[acronym]title,this is a description[/acronym]

[hrc]#2B60DE[/hrc]
6) Horizontal bar with color

[hrc]#4BA08E[/hrc]
[hrc]yellow[/hrc]
[hrc]red[/hrc]

[hrc]#4BA08E[/hrc]
[hrc]yellow[/hrc]
[hrc]red[/hrc]

[hrc]#2B60DE[/hrc]
7) Scrolling text

Incoming from Right!
Incoming from Left!


[scroll=left]Incoming from Right![/scroll]
[scroll=right]Incoming from Left![/scroll]


[hrc]#2B60DE[/hrc]
8) Button link

[button=http://www.google.com]Google[/button]

[button=http://www.google.com]Google[/button]

[hrc]#2B60DE[/hrc]
9) Progress bar

My hack progress
   35%

[progress=35]My hack progress[/progress]

[hrc]#2B60DE[/hrc]
10) Google button link


[google]FF6 hacking[/google]

[hrc]#2B60DE[/hrc]

That's it for now! Feel free to add any other suggestion or idea for custom tags!


RE: New MyCode tags! - Astaroth_ - 07-30-2013

Thank you! thank you

[blink]Amazing![/blink]


RE: New MyCode tags! - B-Run - 07-31-2013

My goal is to use all of these in a single post by the end of the week. The 15th Man Project just got a lot fancier!

Also: did you have to write the code for these or are did they just need to be uploaded? I have ulterior motives for asking.


RE: New MyCode tags! - madsiur - 07-31-2013

(07-31-2013, 06:38 AM)Edrin Wrote: did you have to write the code for these or are did they just need to be uploaded? I have ulterior motives for asking.

Some of them have been taken from the internet, some are from me and some are edited. But yes, you have to write the regex that recognize the tag and the HTML generated by the tag.

As an example, a tag such as \[backcolor=(.*?)\](.*?)\[/backcolor\] (to be read as [backcolor=$1]$2[/backcolor]) could generate a div or span element with $1 as the background-color attribute (background-color: $1) and $2 as the text of the element.