I have a xml file encoded with the flash “escape” function
(here http://www.fotosnostalgicas.smartworks.com.mx/prueba/tagboard.xml)
there is no problem because I read it in flash and I can unescape it there.
but when I read it in a html document and try to unescape it with javascript it doesn’t works…
looks like the encoding of flash and javascript are diferent
you can see this string has been “escaped” with flash:
qu%C3%A9%20sucede%20con%20ustedes%20%C3%91%C3%91%C3%91%C3%91%C3%91%C3%91%C3%91//var men = "qu%C3%A9%20sucede%20con%20ustedes%20%C3%91%C3%91%C3%91%C3%91%C3%91%C3%91%C3%91
and this with javascript:
qu%E9%20sucede%20con%20ustedes%20%D1%D1%D1%D1%D1%D1%D1%D1
is the same message but looks diferent.
¿how can I do to read the encoding of flash in html?
¿maybe I have to use php?