Flash actionscript 3.0: LocalConnection Example in AS3.0

LocalConnection Example in AS3.0

Posted by Sankar.G | Posted in | Posted on 9:09 PM

Local connections enable a communication between SWF files without the use of fscommand()
or JavaScript. LocalConnection objects can communicate only among files that are running on the same client
computer, but they can be running in different applications

LocalConnection objects to implement communication between two files,
it is helpful to identify the commands used in each file.
One file is called the sending file; it is the file that contains the method to be invoked.

The sending file must contain a LocalConnection object and a call to
the send()method.

The other file is called the receiving file;it is the file that invokes the method.
The receiving file must contain another LocalConnection object and a call to the connect() method.

Below link is useful to you to get the Example of a Local Connection

LocalConnection.zip

Comments (0)