RE: [Flashcoders] Special characters?

2006-08-22 Thread Mike Mountain
[as] for (i=288; i=318; i++) { var val = String.fromCharCode(i); trace(val); } [/as] Any good? M -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Steven Loe Sent: 22 August 2006 16:40 To: flashcoders@chattyfig.figleaf.com

RE: [Flashcoders] Special characters?

2006-08-22 Thread Steven Loe
Mike, Works like a charm. Thank you very much! -Steven / --- Mike Mountain [EMAIL PROTECTED] wrote: [as] for (i=288; i=318; i++) { var val = String.fromCharCode(i); trace(val); } [/as] Any good? M -Original Message- How does one access characters in a

RE: [Flashcoders] special characters

2005-11-13 Thread Gregory_GOusable
Enrico, I tried what you've described - indeed! you wrote: How can I write the '' char, inside an html dynamic textfield? In fact, writing char isn't a problem, but loading it from text file is: it's either recognized as tag or (if you use lt; etc) another variable. But if you try create a local

Re: [Flashcoders] special characters

2005-11-13 Thread MetaArt
Well, the question is that the (.txt) files are done by unskilled users, using a simple appl to apply some basic features to chars (like bold, italic, underlined), so I must use simple text files. But, at last, maybe the string manipulation option is the only way... thank you for suggestion.

Re: [Flashcoders] special characters

2005-11-13 Thread Ian Thomas
In which case the onData option might be your best bet. The text files can then be whatever you like - it's up to you to process them in whatever way you wish. Basically by providing your own LoadVars.onData() function, you completely replace Flash's default processing of text files - you are