Great, thanks for your guidance, it now looks a lot more possible. I found this tutorial:
http://www.thetechlabs.com/tutorials...3-videoplayer/

Can you advise me at all on how I might go about adjusting the code to control all five videos at once? It seems as though it's all pulled from one variable at the moment, being the one video. Here's the changes I've made so far, to no avail:

Code:
**ORIGINAL**
// url to flv file
var strSource:String “movies/livingroom.flv”;

**REPLACEMENT**
// url to flv file
var strSource:String “movies/livingroom.flv”;
var strSource2:String “movies/bedroom.flv”;
var strSource3:String “movies/bathroom.flv”;
var strSource4:String “movies/kitchen.flv”;
var strSource5:String “movies/corridor.flv”;

**ORIGINAL**
// attach net stream to video object on the stage
vidLivingRoom.attachNetStream(nsStream);

**REPLACEMENT**
// attach net stream to video object on the stage
vidLivingRoom.attachNetStream(nsStream);
vidLivingRoom.attachNetStream(nsStream);
vidLivingRoom.attachNetStream(nsStream);
vidLivingRoom.attachNetStream(nsStream);
vidLivingRoom.attachNetStream(nsStream);