I have 2 flex apps on the same page. I want them to be able to call each other's public functions. I am thinking of using either externalInterface calls or FaBridge to do so. Is there a better way to do it?

link|improve this question

feedback

2 Answers

The best way to go is to use LocalConnection. It allows you to call methods from a seperate SWF without having to go through Javascript or a server.

Tip: if you're going to be sending arguments that are greater than about 20KB in size, you will want to split them up in two or more calls. In my experience LocalConnection calls have a limit of around that size for data.

link|improve this answer
feedback

NOTE:There is a better solution refer this link http://stackoverflow.com/questions/1258187/communication-between-two-flex-apps/1260710#1260710 answer by David.Its a pretty good and better approach.

There are two ways only one by using some communication medium at client side (Javascript) or doing it on server side like doing some update on server and other application listens for update.

So i think first one is better for communication.You can achieve it by doing through javascript but i will recommend you to use FABridge.

link|improve this answer
dude.. you liked this page. where's the better solution ? – ufk Jul 29 '10 at 14:55
@ufk, the link (not like) is to a different answer on this same page. The answer by David, as the text says. – TRiG Nov 19 '10 at 12:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.