Is it possible to run a sequence of events that do not have Triggers? For example:

Code:
var sequence:EventSequence = new EventSequence();
sequence.addSequenceEvent(FirstSequenceEvent, someParam);
sequence.addSequenceEvent(SecondSequenceEvent, someParam);
sequence.addSequenceEvent(ThirdSequenceEvent, someParam);
The documentation led me to believe this is possible. From 3.1.1.6. Event Sequences What if the command does not update the model locator:

"The command then has do decide when its action is finished and unregister itself"
With an example:
Code:
PendingCommandRegistry.getInstance().unregister(this);
Using this technique, I found the FirstSequenceEvent is fired and the FirstSequenceCommand unregisteres itself. After which the remaining sequence events do not fire. In the EventSequence class, the next event is triggered by the change of a Property. It appears the unregistering of the command does not Trigger the next sequence.

Am I missing something obvious here?