treat glyphs with alpha=0 differently than normal glyphs (remove outlines)
[swftools.git] / lib / as3 / ok / prototype.as
1 package {
2     import flash.display.MovieClip;
3     
4     public class Main extends flash.display.MovieClip {
5         function Main() {
6             function MySuper() {
7                 this.ok3="ok 3/3";
8             }
9             function MyClass(ok1,ok2) {
10                 this.ok1 = ok1;
11                 this.ok2 = ok2;
12             };
13             MyClass.prototype = new MySuper;
14
15             var m = new MyClass("ok 1/3", "ok 2/3");
16             trace(m.ok1);
17             trace(m.ok2);
18             trace(m.ok3);
19             
20             trace("[exit]");
21         }
22     }
23 }