views:

33

answers:

1

Is it safe to share data between flash and javascript using ExternalInterface? I'm building a game where I want to pass scores to js, not sure if this is safe enough.

Thanks

+1  A: 

Nothing is safe. Anything you pass to JavaScript could be easily retrieved just by using a browser's developer console, by overriding the function called by ExternalInterface and intercepting the arguments.

Andy E