Left: | ||
Right: |
OLD | NEW |
---|---|
(Empty) | |
1 // object-subrequest.as | |
2 // Source for generating test SWF object for the object-subrequest testcase page . | |
3 | |
4 // Compile with SWFTools as3compile: | |
5 // as3compile -X 250 -Y 250 object-subrequest.as | |
6 | |
7 package | |
8 { | |
9 import flash.display.MovieClip | |
10 | |
11 public class Main extends MovieClip | |
12 { | |
13 function Main() | |
14 { | |
15 this.graphics.beginFill(0xcc0000) | |
16 this.graphics.drawRect(0,0, 250,250); | |
17 this.graphics.endFill() | |
18 | |
kzar
2018/04/19 13:08:22
Nit: Please could you remove the trailing whitespa
| |
19 // Do network request. | |
20 } | |
kzar
2018/04/19 13:08:22
Nit: Please could you remove the trailing whitespa
| |
21 } | |
22 } | |
OLD | NEW |