add test for frames and bytes properties of empty movies
[swfdec.git] / test / trace / asnative-create.as
blob70c369f4a3e610ca03ea25b3bf6afd917cbefcfb
1 // makeswf -v 7 -s 200x150 -r 1 -o asnative-create.swf asnative-create.as
3 trace ("Check ASnative creates a new functio object every time");
5 foo = ASnative(5, 0);
6 foo.bla = 42;
7 trace (foo);
8 trace (foo.bla);
9 foo2 = ASnative(5, 0);
10 trace (foo2.bla);
11 trace (foo == foo2);
12 trace (foo == Mouse.show);
13 trace (Mouse.show.bla);
15 loadMovie ("FSCommand:quit", "");