Jorge muchas gracias por la respuesta, estuve manipulando el codigo y tengo una inquietud, luego de tener mi diseño realizado en catalys, lo pase a fBuldier, para poder agregar el codigo donde se realizen el cambio entre los estados, pero no me funciono no se que pueda estar mal, si me puedes ayudar con esto.
De ante mano mil gracias!!
Código :
<s:Application
xmlns:ATE="http://ns.adobe.com/ate/2009" xmlns:ai="http://ns.adobe.com/ai/2009"
xmlns:fc="http://ns.adobe.com/flashcatalyst/2009" xmlns:lib="assets.graphics.olive_tour.*"
xmlns:d="http://ns.adobe.com/fxg/2008/dt" xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark" xmlns:flm="http://ns.adobe.com/flame/2008"
height="400" width="700" backgroundColor="#FFFFFF" preloaderChromeColor="#FFFFFF">
<fx:Style source="Main.css"/>
<fx:Script>
<![CDATA[
import flash.events.TimerEvent;
import flash.utils.Timer;
[bindable]
private var timer:Timer;
private var estado = ["Page1", "Page2", "Page3", "Page4", "Page5", "Page6"];
private function iniciaTimer():void{
timer = new Timer(36000);
timer.addEventListener(TimerEvent.TIMER, cambiar);
timer.start();
}
private function cambiar(evt:TimerEvent):void{
this.currentState = estado[int(timer.currentCount%estado.length)]
}
]]>
</fx:Script>
<s:states>
<s:State name="Page1"/>
<s:State name="Page2"/>
<s:State name="Page3"/>
<s:State name="Page4"/>
<s:State name="Page5"/>
<s:State name="Page6"/>
</s:states>
luego de esto sigue el codigo normal del banner!!