Yes indeed, but doesn't this seem to be arbitrarily restrictive?

Suppose you're trying to coordinate loading pictures between 3 or 4 plugins-- how can you do it without implementing a fairly complex scheme of attempted connects and changing connection names?




On Jul 19, 2007, at 2:00 AM, flashcoders- [EMAIL PROTECTED] wrote:

Only one server can be active (connected) with a particular connection
identifier. If you try to connect another LocalConnection server with
an already existing identifier (even in another movie), connect() will
fail and return false.

var lc1: LocalConnection = new LocalConnection();
trace(lc1.connect("myconnection")); // true

var lc2: LocalConnection = new LocalConnection();
trace(lc2.connect("myconnection")); // false

_______________________________________________
[email protected]
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

Reply via email to