Author: | yuuki |
---|---|
Mode: | actionscript |
Date: | Fri, 14 Aug 2009 08:10:40 |
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); } }