Left trim and right trim actionScript functions

Left trim and right trim actionScript functions These useful functions (lTrim and rTrim) are available in almost all programming languages yet not in actionScript, so here’s how to write ones yourself: lTrim is easier, so we’ll start with that: [as] function lTrim(txt:String):String { while (txt.charAt(0)==” ” ||txt.charAt(0)==”\t” || txt.charAt(0)==”\n” || txt.charAt(0)==”\r” ) { txt=txt.substring(1,txt.length-1); } …

One More reason to hate Microsoft!

Like many of you outlook express users, I got an email today informing me that outlook express will no longer be able to access hotmail accounts beyond June 30 because the geniuses at Microsoft have invented what they think is a better protocol and outlook doesn’t support it so they had to come up with …