Código:
y la quiero ejecutar de la sig forma:public class Conversor { private var etiqueta:Label; private var numero:String; public function Conversor(etiqueta:Label,numero:String):void { this.etiqueta = etiqueta; this.numero = numero; } public function binario():void { etiqueta.text = ""; var obj:Object = (new int(numero)).toString(2); etiqueta.text = obj.toString(); } }
Código:
Pero al hacerlo me muestra el sig error:private var obj:Conversor = new Conversor(resultado,"2"); obj.binario();
TypeError: Error #1009: Cannot access a property or method of a null object reference.
el error está en la funcion binario, xq si yo comento lo de adentro no hay error
me podrían ayudar por favor??