Reputation: 187
i have two flex applications and i want to pass the data from one application to another.Is there any way to do the same.Plz reply
Upvotes: 2
Views: 1083
Reputation: 4059
private var lc : LocalConnection = new LocalConnection();
private var connectionString = mySWFLoader.content["connectionString"];
lc.send( connectionString, "thisIsMyMethod", "theseAreMyParameters" );
Edit: no need of JavaScript or 3rd party languages, just see the complete tutorial for communication between 2 flex applications HERE
Upvotes: 6
Reputation: 10064
Yes, there is. You can use JavaScript to communicate between the two Flex applications. See this tutorial for some examples.
Upvotes: 0