Prashant Dubey
Prashant Dubey

Reputation: 187

How to pass data from one flex application to another?

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

Answers (2)

o15a3d4l11s2
o15a3d4l11s2

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

Prutswonder
Prutswonder

Reputation: 10064

Yes, there is. You can use JavaScript to communicate between the two Flex applications. See this tutorial for some examples.

Upvotes: 0

Related Questions