Lo que quiero hacer es que se ponga el año actual (2009), pero me dice que tengo el siguiente error:
1176: Comparación entre un valor con tipo estático flash.text:TextField y un tipo Number posiblemente no relacionado.
Aqui esta el codigo que estoy utilizando para mas claridad:
import flash.text.*;
var year_txt:TextField = new TextField();
var year:Date = new Date();
year_txt.type = "dynamic";
addChild (year_txt);
year_txt == year.getFullYear();
De antemano gracias por la ayuda que me puedan brindar....
