Communication between two flex applications

I have 2 flex applications on one page. I want them to be able to call each other public functions. I am thinking about using external calls externally or FaBridge for this. Is there a better way to do this?

+6
flex actionscript-3 mxml ipc
source share
1 answer

Best to use LocalConnection . This allows you to call methods from a separate SWF without having to go through Javascript or the server.

Tip. If you intend to send arguments larger than 20 KB, you will want to split them into two or more calls. In my experience with LocalConnection , calls have a limit around this size for data.

+74
source share

All Articles