flash: load txt problem
flash: load txt problem
- Started
- Last post
- 4 Responses
- smartK
I'm loading a txt file into flash, where it's rendered as html.
the problem is that the txt contains german umalaute, looking like this "ü"
the problem is that the ampersand character makes flash think it's a new variable ... how can I solve this problem?
- corin0
I've often wondered how that is handled because the HTML charachter code has an ampesand in it too... hmmm... I was always a big coward and wrote 'and' instead of trying to figure out a way... interested to see what comes up
- ********0
Use URL encoding (Flash 5)
or
Unicode (Flash MX)
Plenty of technotes on how to at
http://macromedia.com/support/fl…
the search is down just now though........
- keiTai0
You can try this at the begin of your AS
System.useCodepage=true;
- smartK0
works now, thanks