Tengo un problema con mi archivo .as
tengo una funcion:
Cita:
La cual es llamada por mi main:private function init(e:Event=null):void {
buildLevel(gameLay);
}
buildLevel(gameLay);
}
Cita:
Pero recibo este error al intentar ver el resultado con CTRL+ENTER:public function Main():void {
if(stage) {
init();
} else {
addEventListener(Event.ADDED_TO_STAGE, init);
}
}
if(stage) {
init();
} else {
addEventListener(Event.ADDED_TO_STAGE, init);
}
}
Cita:
Porque me sale este error?1046: Type was not found or was not a compile-time constant: Event.
No se que tengo mal, a mi parecer deberia de funcionar :S
Gracias por la ayuda!