Código :
[Fault] exception, information=TypeError: Error #1010: Un término no está definido y no tiene propiedades.
y bueno, este es el codigo de la funcion:
Código ActionScript :
public static function createLayer(__width:int, __height:int):Array
{
var result:Array = new Array();
for (var h:int = 0; h < __height; h++)
{
for (var w:int = 0; w < __width; w++)
{
result[h][w] = [0xFFFFFF, 1.0];
}
}
return result;
}ya he intentado muchas cosas, y espero que me puedan ayudar.
gracias de antemano.
