http://www.swfcabin.com/open/1315317861A program I made because I hated editing the table before making my card idea. Very simple to use. Just replace the things on the left (name, image url ect) with the value of your card, and the box on the right will change the code accordingly. After you put in everything, you have to click on the box to the right, press ctrl+a to select it all, and then ctrl+c to copy it so you can paste it here. Next version will have an autocopy feature after you just click on the box to the right. Still trying to figure out how to do that though.
Not sure if people will find this useful, but I always hated messing with the html having to be careful that I dont accidentally erase something I needed.
I love open source, so heres the code that made this possible!
function Copy(){
System.setClipboard(Final.text);
trace(Final.text);
};
function onEnterFrame()
{
Final.text="[table][tr][td][center][img]"
+IMGURL.text+
"[/img][/center][/td][td][center][img]"
+IMGURLU.text+
"[/img][/center][/td][/tr][tr][td][table][tr][td][right][b][size=8pt][color=#C9C299]NAME: [/color][/color][/size][/b][/right][/td][td]"
+Name.text+
"[/td][/tr][tr][td][right][b][size=8pt][color=#C9C299][color=#C9C299] ELEMENT: [/color][/color][/size][/b][/right][/td][td]"
+Element.text+
"[/td][/tr][tr][td][right][b][size=8pt][color=#C9C299][color=#C9C299] COST: [/color][/color][/size][/b][/right][/td][td]"
+Cost.text+
"[/td][/tr][tr][td][right][b][size=8pt][color=#C9C299][color=#C9C299] TYPE: [/color][/color][/size][/b][/right][/td][td]"
+Type.text+
"[/td][/tr][tr][td][right][b][size=8pt][color=#C9C299][color=#C9C299] ATK|HP: [/color][/color][/size][/b][/right][/td][td]"
+ATKHP.text+
"[/td][/tr][tr][td][right][b][size=8pt][color=#C9C299][color=#C9C299] TEXT: [/color][/color][/size][/b][/right][/td][td]"
+CardText.text+
"[/td][/tr][/table][/td]
[td][table][tr][td][right][b][size=8pt][color=#C9C299] NAME: [/color][/color][/size][/b][/right][/td][td]"
+NameU.text+
"[/td][/tr][tr][td][right][b][size=8pt][color=#C9C299][color=#C9C299] ELEMENT: [/color][/color][/size][/b][/right][/td][td]"
+ElementU.text+
"[/td][/tr][tr][td][right][b][size=8pt][color=#C9C299][color=#C9C299] COST: [/color][/color][/size][/b][/right][/td][td]"
+CostU.text+
"[/td][/tr][tr][td][right][b][size=8pt][color=#C9C299][color=#C9C299] TYPE: [/color][/color][/size][/b][/right][/td][td]"
+TypeU.text+
"[/td][/tr][tr][td][right][b][size=8pt][color=#C9C299][color=#C9C299] ATK|HP: [/color][/color][/size][/b][/right][/td][td]"
+ATKHPU.text+
"[/td][/tr][tr][td][right][b][size=8pt][color=#C9C299][color=#C9C299] TEXT: [/color][/color][/size][/b][/right][/td][td]"
+CardTextU.text+
"[/td][/tr][/table][/td][/tr][/table]
[table][tr][td][table][tr][td][right][b][size=8pt][color=#C9C299] ART: [/color][/color][/size][/b][/right][/td][td]"
+Art.text+
"[/td][/tr]
[tr][td][right][b][size=8pt][color=#C9C299] IDEA: [/color][/color][/size][/b][/right][/td][td]"
+Idea.text+
"[/td][/tr]
[tr][td][right][b][size=8pt][color=#C9C299] NOTES: [/color][/color][/size][/b][/right][/td][td]"
+Notes.text+
"[/td][/tr]
[tr][td][right][b][size=8pt][color=#C9C299] SERIES: [/color][/color][/size][/b][/right][/td][td]"
+Series.text+
"[/td][/tr][/table][/td][/tr][/table]";
};
Thats all of the code for it
open source ftw.
Im sure plenty of people will find this sorta pointless, but I thought Id share it for those like me who hate editing the table.
V2 is now out! Fixed a bug with the series not working
Edit
V3 is now out! Previously the upped and regular card text were reading the same thing. Now that works properly.