Flash : Local connection gives error

Posted by Fahim Akhter on Stack Overflow See other posts from Stack Overflow or by Fahim Akhter
Published on 2010-04-02T14:03:29Z Indexed on 2010/04/02 14:43 UTC
Read the original article Hit count: 486

Filed under:
|

I am trying to connect to FBJS bridge. It keeps giving me the following error.When I'm opening only one connection and I do not have any other window open.

ArgumentError: Error #2082: Connect failed because the object is already connected.
at flash.net::LocalConnection/connect()
at BabyVille()[C:\Documents and Settings\user\Desktop\babyville\flash\Main Project\src\BabyVille.as:56]

This is my code :

public class fbjsTest extends Sprite
{
    private var connection:LocalConnection = new LocalConnection(); 
    private var connectionName:String = LoaderInfo(root.loaderInfo).parameters.fb_local_connection;
    public function fbjsTest()
    {
        connection.connect(connectionName);
    }
}

That is on the Facebook page if I try to run it locally the following line returns null

LoaderInfo(root.loaderInfo).parameters.fb_local_connection

Any Ideas?

© Stack Overflow or respective owner

Related posts about flash

Related posts about actionscript-3