add blend mode tests
[swfdec.git] / test / image / text-field-empty.as
blobfb277083fd32d50cd243acba342a1adb7998dd34
1 // makeswf -v 7 -r 1 -s 200x150 -o text-field-empty-7.swf text-field-empty.as
3 this.createTextField ("t1", 0, 25, 25, 50, 50);
5 t1.background = true;
6 t1.backgroundColor = 0x00FF00;
8 this.createTextField ("t2", 1, 45, 45, 95, 95);
10 t2.border = true;
11 t2.borderColor = 0xFF0000;
12 t2.background = true;
13 t2.backgroundColor = 0x0000FF;
15 // this one won't show up at all
16 this.createTextField ("t3", 2, 75, 75, 50, 50);