■プログラム説明(ソースコード説明)
			 HSBカラーを指定するにはカラーオブジェクトを作成します。「カラーオブジェクト.hsb」のhue、brightness、saturationに以下の値を設定します。
			
			hue	色相(0〜360度)
			brightness	輝度(0〜100)
			saturation	彩度(0〜100)
			
			■ソースコード
			colObj = new SolidColor();
			colObj.hsb.hue = 120;
			colObj.hsb.brightness = 50;
			colObj.hsb.saturation = 100;
			documents.add(320,240);
			activeDocument.selection.selectAll();
			activeDocument.selection.fill(colObj,ColorBlendMode.NORMAL, 100, false);
			
			■ポイント
			 なし
			
		
■実際のスクリプトをダウンロード(sample.js.zip)