add blend mode tests
[swfdec.git] / test / image / text-field-scale-parents.as
blobc86d3d095712694106489dc53375af1ca95ea42c
1 // makeswf -v 7 -s 200x150 -r 1 -o text-field-scale-parents.swf text-field-scale-parents.as
3 createEmptyMovieClip ("a", 0);
4 a._xscale = -100;
5 a.createEmptyMovieClip ("a", 0);
6 a.a._xscale = -100;
7 a.a.createTextField ("t", 0, 0, 0, 50, 40);
8 a.a.t.background = true;
9 a.a.t.backgroundColor = 0xFF;
11 a.createTextField ("t", 1, -100, 0, 50, 40);
12 a.t._xscale = -200;
13 a.t.background = true;
14 a.t.backgroundColor = 0xFF00;