I am using four movies on one page and they all need to be able to send and recieve data to each other using LocalConnection. Therefore with my original thought i would need to create 12 unique channels for each of them to be able to send and recieve to each of the others, the more movies their are on the page, the higher the number of channels will be. Instead i decided to create a relay movie, a fifth movie, which creates a unique listening channel which each of the other four movies on the page, then each of those four movies create a unique listening channel with the relay movie. So we now effectively have a relay system, where each of the four movies on the page can send and recieve data from and to the relay movie using only 8 unique channels as opposed to 12. For any of those four movies to communicate with each other they send a message to the relay movie, which in turn relays the message to each of the other movies and my problem is solved. This solution to a problem, may come in handy for those people worried about the amount of memory each channel uses on the local computer as it obviously reduces that amount by atleast half, the more channels there are, the memory that is used, thus reducing the number of channels reduces the memory usage!