Thanks Cliff i resolved the problem.!

The problem was a reference in catalogs. Thats done!!!
Now i got a question about register views...
When i initialize the application i do it with the proper command for
example ViewPrepCommand like this..:
override public function execute(notification:INotification):void{
var app:cdiintegra=notification.getBody() as cdiintegra;
//Registro el mediador
facade.registerMediator(new SolicitudSocioMediator(app.solicitudSocio));
}
If i have more views inside solicitudSocio component with the proper id.. do i have also register those views?? and the proper mediators???
If the answer is yes how can i do that?
something like this?...
override public function execute(notification:INotification):void{
var app:cdiintegra=notification.getBody() as cdiintegra;
//Registro el mediador
facade.registerMediator(new SolicitudSocioMediator(app.solicitudSocio));
facade.registerMediator(new SolicitudSocioMediator(app.solicitudSocio.DatosSolicitudSocio));
}
Thanks PUREMVC
