charコード表

by shohei909 forked from flex ボタンイベントのテスト (diff: 28)
♥0 | Line 31 | Modified 2010-04-02 21:17:49 | MIT License
play

ActionScript3 source code

/**
 * Copyright shohei909 ( http://wonderfl.net/user/shohei909 )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/3eXT
 */

<?xml version="1.0" encoding="utf-8"?>
<!-- forked from shohei909's flex ボタンイベントのテスト -->
<!--
	char 文字コード表
	
	10は改行。
	13は改ページ?
	
	65535で一周
	String.fromCharCode(1)とString.fromCharCode(65536)は同じになります。

	
	ひらがな、カタカナは48ページ。
-->
<mx:Application
    xmlns:mx="http://www.adobe.com/2006/mxml"
    creationComplete="jump()"
    >
	    <mx:TextArea id="area" text="" width="100%" height="90%"/>
	    	<mx:HBox>
			<mx:Label text="page"/><mx:NumericStepper id="page" value="0" maximum="255" minimum="0" change="jump()"/>
		</mx:HBox>
	    	<mx:Script>
        		<![CDATA[
        			flash.events.Event;
        			public function jump():void{
        				var c :uint = page.value;
        				area.text = "";
	        			for(var i:uint=1+c*0x100;i<=0xFF+c*0x100;i++){
	        				area.text += i + ":" + String.fromCharCode(i) + ",\n";
	        			}
	        		}
	        ]]>
	    </mx:Script>
</mx:Application>