add blend mode tests
[swfdec.git] / test / image / text-field-background.as
blobca6c520252509e2964ba032968ecb0e02e404c3f
1 // makeswf -v 7 -s 200x150 -r 1 -o movie23.swf movie23.as
3 function create (depth, x, y) {
4 var t = createTextField ("t" + depth, depth, x, y, 50, 25);
5 var t = this["t" + depth];
6 t.background = true;
7 t.backgroundColor = 0xFF0000;
8 };
10 create (0, 25, 25);
11 t0.border = true;
12 create (1, 100.5, 25);
13 create (2, 25, 75);
14 t2._y += 0.4;
15 create (3, 100.5, 75);
16 t3._y += 0.5;
17 t3.border = true;