In case Flash no longer exists; a copy of this site is included in the Flashpoint archive's "ultimate" collection.

Dead Code Preservation :: Archived AS3 works from wonderfl.net

progressionを試すも断念

jp.nium.utils.* 
jp.progression.*
パッケージを色々触ってみる、が
セキュリティボックス侵害がたくさん出るよ。
@author	naoto koshikawa
Get Adobe Flash player
by naoto5959 06 Mar 2009
package
{
	import flash.display.Sprite;
	import flash.net.URLRequest;
	import flash.system.Security;
	import flash.text.TextField;
	import jp.progression.casts.*;
	import jp.progression.commands.*;
	import jp.progression.events.*;
	import jp.progression.loader.*;
	import jp.progression.*;
	import jp.progression.scenes.*;
	import jp.nium.utils.*;

	/**
	* jp.nium.utils.* 
	* jp.progression.*
	* パッケージを色々触ってみる、が
	* セキュリティボックス侵害がたくさん出るよ。
	* @author	naoto koshikawa
	*/
	public class Progression1 extends Sprite
	{
		private static const LOGO_URI:String = "http://ppworks.jp/swf/assets/27750.jpg";

		/** image cast */
		private var _image:CastImageLoader;
		
		/**
		 * constructor
		 */
		public function Progression1()
		{
			var commands:SerialList = new SerialList();
			commands.addCommand(
				new AddChild(this, _image = new CastImageLoader()),
				function()
				{
					_image.load(new URLRequest(LOGO_URI));
				}
			);
			commands.execute();
		}
	}
}