views:

46

answers:

1

Hi

I am creating a TextField in my flash application, but when i am starting to write something the following error in written to trace:

* Security Sandbox Violation * SecurityDomain xxx tried to access incompatible context yyy

What is the reason for that? How can i solve it?

+1  A: 

The error doesn't have much to do with your Textfield. When you enter some text you must be starting some sort of logic that leads to this error. The error itself is pretty clear, some logic in your code seems to be loading some content and indicates a problem with your policy file. It's impossible to help without seeing some code, you need to implement some form of debug routine to try and break your application in different parts, according to each part's concern, in order to try & isolate the error.

PatrickS