treat glyphs with alpha=0 differently than normal glyphs (remove outlines)
[swftools.git] / lib / as3 / ok / nopackage.as
1 /* functions which are valid for this source file only */
2
3 function f1() {
4     trace("ok 1/3")
5 };
6
7 package {
8     import flash.display.MovieClip
9
10     public class Main extends flash.display.MovieClip {
11         public function Main() {
12             f1()
13             trace("ok 2/3")
14             f3()
15             trace("[exit]");
16         }
17     }
18 }
19
20 function f3() {
21     trace("ok 3/3")
22 };
23