// Adjust Volume on FLV Video
Categories
// Adjust Volume on FLV Video
// note t0 self – place inside class declaration with vars – include Flex SDK swc (flash CS4)
// base css for flash 100% width min size that works in ff3+, safari3+, google chrome 1+ Remember to use a reset.css: the margin / padding of html and body must be zero.
var bitmap:Bitmap; for (var i:int = 0; i < this.numChildren; i++) { bitmap = this.getChildAt(i) as Bitmap; if (bitmap) break; } Go to Source