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

[a-z]*[a-z]

...
@author tkinjo
Get Adobe Flash player
by tkinjo 06 Jul 2009
    Embed
/**
 * Copyright tkinjo ( http://wonderfl.net/user/tkinjo )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/bAht
 */

package  
{
	import flash.display.Sprite;
	import flash.text.TextField;
	import flash.text.TextFieldAutoSize;
	
	[SWF(width = "465", height = "465", frameRate = "60", backgroundColor = "#ffffff")]
	
	/**
	 * ...
	 * @author tkinjo
	 */
	public class Main extends Sprite
	{
		private const alphabet:String = "abcdefghijklmnopqrstuvwxyz";
		
		public function Main() 
		{
			var textField:TextField = new TextField();
			textField.width = stage.stageWidth;
			textField.height = stage.stageHeight;
			textField.wordWrap = true;
			
			for ( var i:uint = 0; i < alphabet.length; i++ ) {
				
				for ( var j:uint = 0; j < alphabet.length; j++ ) {
					
					textField.appendText( alphabet.charAt( i ) + alphabet.charAt( j ) + " " );
				}
				
				textField.appendText( "\n" );
			}
			
			addChild( textField );
		}
		
	}
	
}