New issue
Advanced search Search tips

Issue 799 attachment: mysubclass.as (829 bytes)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import flash.display.BitmapData;

class mysubclass {

public var uri;

function myfunc(){

trace("in f");
this.__proto__ = {};
this.__proto__.__constructor__ = flash.display.BitmapData;
super(1000, 1000);


}

function l(){
trace("in l");

}

function mysubclass(){


trace("ftop");
_global.tf = this;
this.watch("name", myfunc);
_global.ASnative(2204, 200)(this);
this.unwatch("name");
var fi:flash.net.FileReference = new flash.net.FileReference();
trace(_global.ASnative(2204, 303).call(this));
trace(_global.ASnative(2204, 310).call(this, "test"));
trace(_global.ASnative(2204, 2).call(this));
trace(_global.ASnative(2204, 1).call(this));
trace(_global.ASnative(2204, 0).call(this, "test"));


}





}