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); } …
Read More “Left trim and right trim actionScript functions”
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 …
Read More “One More reason to hate Microsoft!”
An XML driven slick mp3 player with playlist support and paypal as payment gateway, the look and feel is clean crisp and WEB2.0. The player displays album art and a nice spectrum analyzer animation and comes with two skins, the black and white ones. Here’s a preview of the players, click to see them in …
Read More “paypal enabled mini mp3 player”