Local Connection Actionscript – Communicate between seperate Flash files | Tutorial

Google Buzz

Overview:

Local Connection
Communication between two separate flash files placed on the same page (or even running simultaneously on one machine) is a nice way to spread a project out. You can send variable, call functions, pretty much do anything in one swf from another. Easiest case use would be a navigation menu set up in one flash file to control the other one containing the content. I’ve made an example here showing how to send text from one to another. I’ve done it both directions here. Send text from the red swf to the blue swf, and from mr. Blue you send to the red flash file. I have named the flash functions in actionscript accordingly (or tried to, now I notice a few places I misspelled receive, ‘i’ before ‘e’, right? oh yea, except after ‘c’)…
Anyways, try out the example here, I made it a little easier by putting a keyListener on ‘Enter’, so you don’t have to actually press the send button. Didn’t realize it before, but this is like a chat app built in flash! So go ahead and chat with yourself to prove that it works!

Execute actionscript in one swf from another! Inter-swf communication.

Example:

Type here to send Red text to Blue flash file

Get Adobe Flash player

And see it received here, and go ahead and send some back to Red.

Get Adobe Flash player

Actionscript:

Red:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Receiving
//create a local connection for reciept of text
var receiving_lc:LocalConnection = new LocalConnection();
//function called from other swf
receiving_lc.recieveBlueText = function(textRecieved:String) {
feedback.text += textRecieved+"\n";
};
//receive connection of specified name
receiving_lc.connect("fromBlue");

//Sending
sendButton.onRelease = function() {
//create local connection for sending text
var sending_lc:LocalConnection = new LocalConnection();
//put text from input into a var
var textToSend = inputText.text;
//send through specified connection, call specified method, send specified parameter
sending_lc.send("fromRed", "recieveRedText", textToSend);
//set the input empty
inputText.text = "";
}

Blue:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Receiving
var receiving_lc:LocalConnection = new LocalConnection();
receiving_lc.recieveRedText = function(textRecieved:String) {
feedback.text += textRecieved+"\n";
};
receiving_lc.connect("fromRed");

//Sending
sendButton.onRelease = function() {
var sending_lc:LocalConnection = new LocalConnection();
var textToSend = inputText.text;
sending_lc.send("fromBlue", "recieveBlueText", textToSend);
inputText.text = "";
}

And the code to listen to the ‘enter’ key(this is in both files):

1
2
3
4
5
6
7
8
//Enter button to send
var keyListener:Object = new Object();
keyListener.onKeyDown = function() {
if (Key.getCode() == "13") {
sendButton.onRelease();
}
};
Key.addListener(keyListener);

Download Source:

localConnectionRedBlue.zip

  • del.icio.us
  • Digg
  • email
  • Facebook
  • FriendFeed
  • Google Bookmarks
  • Hexosearch
  • LinkedIn
  • Mixx
  • Print
  • PDF
  • StumbleUpon
  • Technorati
  • Twitter
  • RSS
This entry was posted in tutorial and tagged , , , , , , . Bookmark the permalink. Post a comment or leave a trackback: Trackback URL.

17 Comments

  1. 4dplane
    Posted 8 April 2008 at 10:19 pm | Permalink

    Hi, and thanks for this example. I have converted this into AS3 and put the code in .as files it works but in a strange way – here is a link to the problem if you are intersted.

    http://www.kirupa.com/forum/showthread.php?p=2310148#post2310148

    thanks again,
    4dplane

  2. Rajesh
    Posted 16 May 2008 at 6:23 am | Permalink

    I have a doubt.. Can we create local connection between three swf files.. Can u please clarify my doubt…

  3. Posted 16 May 2008 at 2:47 pm | Permalink

    Theoretically this is supported. Sorry, I haven’t tested it before, so I can’t say for sure of have an example, I’ll add it to my list though. =)

  4. Posted 24 June 2008 at 5:31 pm | Permalink

    Thanks so much! I’m glad that they’re helpful.

  5. Taylor Dodds
    Posted 25 June 2008 at 11:10 am | Permalink

    Is it possible to add this script to multiple buttons in a pamenu and call multiple flash vido files with it?

  6. Taylor Dodds
    Posted 25 June 2008 at 11:11 am | Permalink

    menu*

  7. julian
    Posted 28 August 2008 at 2:10 am | Permalink

    good job,, thanks for this tutorial…

  8. motu
    Posted 25 September 2008 at 1:27 pm | Permalink

    I too am interested to control a Flash video player from a separate Flash file (with buttons or menus sending the controls)…

    BTW, here’s an example with 4 Flash files communicating on one html page:
    http://home5.inet.tele.dk/nyboe/flash/localconnectiontest.html

    Thanks!!
    motu

  9. ruchi
    Posted 1 November 2008 at 7:58 am | Permalink

    its a good example ,easy to learn,understand……….

  10. Posted 26 November 2008 at 10:48 am | Permalink

    Well on Firefox for Mac your exemple does not work, weird….

  11. Posted 29 November 2008 at 4:43 pm | Permalink

    With ff3 on my mac it works for me ;)

  12. ameer
    Posted 29 April 2009 at 1:07 am | Permalink

    hey can any body help
    it is not working in ie6…plz help

  13. Posted 30 April 2009 at 7:16 pm | Permalink

    This example works great but what can be done about someone who has two browser events open at the same time. The connection will only address the first page that is opened.

  14. Vance
    Posted 25 November 2009 at 12:49 pm | Permalink

    you may want to check the code and solve for the problem that when someone opens your website up in two separate tabs, the local connection object fails. you did catch the error correctly however you didn’t give a second or third one to try when they fail. i’ve had this problem before and it saved me to have a second connection name to try if the first one failed. also if the user was at a website that used the same code you have, more specifically the same local connection name you used, one of the connections would fail.

    just something to think about when doing this. i’ve found the local connection is a real pain.

  15. Tim
    Posted 20 January 2010 at 6:05 pm | Permalink

    This code isn’t working for me on OS 10.5, Firefox 3.5.6, Safari 4.0.4, Flash Player 10,0,32,18. Not sure why.

    Works fine via Parrallels / Windowx XP Pro 2002, IE 6.

    Is this Flash Player Mac bug?

    • Posted 21 January 2010 at 11:55 am | Permalink

      Well this is almost 2 years old, so I wouldn’t be too surprised it new browser updates may have borked it. i’d try some as3 by now to do it. That may help as well

      • WE
        Posted 5 March 2010 at 12:49 pm | Permalink

        That’s the conclusion I’m starting to come to. I’ve been searching around for a working version of a flash localConnection tutorial for hours. I have yet to find a functioning example. Unfortunately, I’m also unable to find any verification that this is due to some new security feature, or other known issue (aside from the very common multiple open browser issue). Seems that this is a problem that has slipped through the cracks and isn’t being addressed anymore. Is there some new way to communicate between flash files on an HTML page?

Post a Comment

Your email is never published nor shared. Required fields are marked *

*
*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>