|
From: Joe M. <joe...@gm...> - 2008-02-10 21:28:34
|
Hi all,
can anyone tell me what I'm doing wrong?
why doesn't work? the queue actually start and go in pause...
"mTimeline.namefield" is the reference to an inputText in the MC.
THX
CODE:
var extendedQueue:ExtendedActionQueue = new ExtendedActionQueue("test");
extendedQueue.addEventListener(ActionQueueEvent.QUEUE_STARTED, this);
extendedQueue.addEventListener(ActionQueueEvent.QUEUE_FINISHED, this);
extendedQueue.addPause( 0 );
extendedQueue.addPauseUntilCondition(mTimeline.namefield, "length", 6,
0.1);
extendedQueue.addAction(trace, 'hello' );
extendedQueue.run();
|