package { import jp.progression.casts.*; import jp.progression.commands.*; import jp.progression.Progression; import jp.progression.scenes.SceneObject; public class Index extends CastDocument { public var prog:Progression; public function Index() { } protected override function _onInit():void { prog = new Progression( "index", stage ); prog.root.onLoad = function() { this.addCommand( new Trace( "トレースが" ), new Wait( 1000 ), new Trace( "遅れて" ), new Wait( 1000 ), new Trace( "聞こえるよ" ) ); }; prog.goto( prog.firstSceneId ); } } } Progression テスト