■プログラム説明(ソースコード説明)
			 グレーカラーを指定するにはカラーオブジェクトを作成します。「カラーオブジェクト.gray」のgrayにグレーの輝度を設定します。設定できる値の範囲は0〜100%になります。
			
			■ソースコード
			colObj = new SolidColor();
			colObj.gray.gray = 30;
			documents.add(320,240);
			activeDocument.selection.selectAll();
			activeDocument.selection.fill(colObj,ColorBlendMode.NORMAL, 100, false);
			
			■ポイント
			 なし
			
		
■実際のスクリプトをダウンロード(sample.js.zip)