class Test extends MovieClip { static var app:Test; function Test(target) { target.__proto__ = this.__proto__; target.__constructor__ = Test; this = target; attachVideo(Camera.get()); } static function main(mc) { app = new Test(_root); } }