PDA

View Full Version : Video Streaming Component ActionScript 3.0


williamjames
01-02-2008, 01:40 AM
I used this script awhile back in ActionScript 2.0,
it's for placing a video component in a flash page
& stream it.

What is the solution in ActionScript 3.0?

var nc:NetConnection = new NetConnection();
nc.connect(null);

var ns:NetStream = new NetStream(nc);

Helix.attachVideo(ns);

ns.play("PresentationVideo.flv");

williamjames
01-02-2008, 01:43 AM
I also need it to have a timeline trigger or eventListener.