AS? basic syntaxis
AS? basic syntaxis
- Started
- Last post
- 2 Responses
- goygoygoy
niv12 = new Array("test1", "test2","test3", "test4");
j=2
trace(["niv1"+j].length);how can I get 4 instead of 1? Wath's wrong?
thanks.
- unfittoprint0
try:
niv12 = new Array("test1", "test2","test3", "test4");
j=2;
trace(this["niv1"+j].length);
- goygoygoy0
tks unfit. that "this"... I really have to figure it out.