■Numberオブジェクトを作成したい
		■書式
			
			
Number(★)
			
			★・・・数式、値、文字列など
 
			■説明
			
			Numberオブジェクトは値を明示的に数値型として定義します。引数が文字列で0〜9の数値で構成されている場合は、数値として変換します。
			■文例
			
			n = new Number(31)
			数値の31を変数nに入れる
			
			n = new Number(myVar)
			変数myVarの内容を数値として変数nに入れる(myVarは0〜9の数字のみで構成)
			
			
			onClipEvent (mouseDown) {
				a = new Number(12);
				a = a+1;
				_root.result1.text = a;
				b = "0002";
				a = new Number(b);
				a = a+1;
				_root.result2.text = a;
			}
			■書籍のご案内