School project

Hi,

This is my first post so let me introduce myself. I’m Rogier and I’m currently living in The Netherlands. I study Communication and Design at the HAN University of Applied Sciences and for a course we have to create a Immersive Space!

I created some animations with 3d and have some still images which to use for a stage with buttons.

Now here comes the problem: I have minor knowledge with Flash and AS2 but they assist on using AS3, I know is better to go along with the development so for as3 I could use some assistance :).

At the main stage I load a external .flv which contains a intro movie, at the end of the intro there has to be a room (stage) where you can click on some button. As you click another .flv starts to play which brings you to another room with some buttons. And so on, and so on.

Now, I figured out how to play a .flv file:

var myVideo:Video = new Video();
addChild(myVideo);

var nc:NetConnection = new NetConnection();
nc.connect(null);
var ns:NetStream = new NetStream(nc);
ns.client = new Object();
myVideo.attachNetStream(ns);
ns.play("videos/intro.flv");

But I don’t have a faint idea how to create a stage which loads, stops, and plays different .flv files based on clicked buttons.

Could you guys help me in the right direction?

Would be highly appreciated!

Rogier