So

Happy birthday! 0101010

well, I wrote those 2 functions to make the translation in flash (may last long for bigger texts)
[AS]function bin2txt(bin) {
for (k=0; k<bin.length; k++) {
if (bin.charAt(k) == 0 || bin.charAt(k) == 1) {
onlybin += bin.charAt(k);
}
}
for (i=0; i<onlybin.length; i += 8) {
num = parseInt(onlybin.substring(i, i+8), 2);
txt += String.fromCharCode(num);
}
return (txt);
}
function txt2bin(txt) {
for (i=0; i<txt.length; i++) {
num = txt.charCodeAt(i);
binprt=num.toString(2)
for(k=binprt.length;k<8;k++){
bin+=“0”
}
bin+=binprt+" "
}
return(bin)
}[/AS]

Cool man… I never bothered doing it in flash… No generally acceptable application after I already did it in C++ lol

Happy Happy Birthday!!!