Custom buttons for flv playback

Hi!
I’ve really looked all over the web for this one…

What should I do if I wanted to add custom video control buttons to my video player…

This code doesn’t seem to work:

vid.fullScreenButton=fullscrn;

Here’s the rest of my code:


var nc:NetConnection = new NetConnection();
nc.connect(null);
var ns:NetStream = new NetStream(nc);
var vid:Video = new Video(160, 120);
vid.x=590;
vid.y=100;
this.addChild(vid);
vid.attachNetStream(ns);
ns.play("http://sjc-v178.sjc.youtube.com/get_video?video_id=x7l-ff1DlrU");
ns.addEventListener(NetStatusEvent.NET_STATUS, netstat);
function netstat(stats:NetStatusEvent) {
 //trace(stats.info.code);
}
var netClient:Object = new Object();
netClient.onMetaData = function(meta:Object) {
     //trace(meta.duration);
 };
ns.client = netClient;

Has it something to do with that I created my video player in AS instead of puting it directly on the stage??:huh:

Thanx!!