A simple skinnable FLV player.
UPDATED - 2009.07.09I streamlined a few things. Now all the objects and functions are more encapsulated and I give an example how to extend based off of symbols in the library.
Now you can just do this with the constructor
var sp:SkinnedPlayer = new SkinnedPlayer("assets/video.flv", 300, 200, "assets/poster.jpg", false, true);
sp.x = 40;
sp.y = 40;
addChild(sp);
Good Luck!