Hi all, I have a problem trying to set a Zoom efect on showing one TitleWindow as popup. Effect is made ok, but at the end it throws one error:
ReferenceError: Error #1069: No se encontró la propiedad autoLayout en _AdminContenidos_mx_managers_SystemManager y no hay ningún valor predeterminado. at mx.effects.effectClasses::ZoomInstance/onTweenEnd() at mx.effects::Tween/endTween() at mx.effects::Tween/http://www.adobe.com/2006/flex/mx/internal::doInterval() at mx.effects::Tween$/::timerHandler() at flash.utils::Timer/flash.utils:Timer::_timerDispatch() at flash.utils::Timer/flash.utils:Timer::tick() In english should be something like: ReferenceError: Error #1069: autoLayout property was not found on _AdminContenidos_mx_managers_SystemManager and there is no default value. The component: <?xml version="1.0" encoding="utf-8"?> <mx:TitleWindow xmlns:mx="http://www.adobe.com/2006/mxml" close="PopUpManager.removePopUp(this);" creationComplete="doInit()" width="100%" height="100%" autoLayout="false" visible="false" showEffect="{ZoomRotateShow}" removedEffect="{ZoomRotateHide}"> <mx:Script> <![CDATA[ private function doInit():void { this.visible=true; PopUpManager.centerPopUp(this); this.setFocus(); } ]]> </mx:Script> <mx:Parallel id="ZoomRotateShow"> <mx:Zoom id="myZoomShow" zoomHeightFrom="0.0" zoomWidthFrom="0.0" zoomHeightTo="1.0" zoomWidthTo="1.0"/> <!-- <mx:Rotate id="myRotateShow" /> --> </mx:Parallel> <mx:Sequence id="ZoomRotateHide"> <!-- <mx:Rotate id="myRotateHide"/> --> <mx:Zoom id="myZoomHide" zoomHeightFrom="1.0" zoomWidthFrom="1.0" zoomHeightTo="0.0" zoomWidthTo="0.0"/> </mx:Sequence> .......... ........... </mx:TitleWindow> ¿Any idea this error appears? Regards, Jesus