views:

48

answers:

1

Hello, Friends!

I have modifyed XMLEncoder class from Flex SDK (XMLEncoder.as)

After it I run my project but I don't see any changes...

What should I do to realy modify project's behaviour?

Thanks!!!

A: 

It's not usually recommended but what you are trying to do is Monkey Patching. You can just copy your modified source file into your project and then you application's XMLEncoder will overwrite the one used in Flex (because of how the Flex linker works). This doesn't work with the framework RSLs though.

James Ward