tags:

views:

47

answers:

2

Hi,

Are there any functions available to convert:

Me, Myself & I

to

Me, Myself & I

I can't find anything in the Flex documentation.

Thanks.

A: 

Escape should do it:

http://livedocs.adobe.com/flex/201/langref/package.html#escape%28%29

dan
escape() does URL encoding, not HTML encoding.
Michael Brewer-Davis
+2  A: 

Check this out. No swc's to include. Basically it's

var s:String = new XMLNode(3, "Me, Myself & I").toString();

adamcodes