前景色と背景色を指定する

■プログラム説明(ソースコード説明)
 前景色はforegroundColor、背景色はbackgroundColorで指定します。カラーモードはCMYKであればcmykプロパティのcyan, magenta, yellow, blackにカラー値(0〜100)を設定します。RGBの場合はred, green, blueにカラー値(0〜255)を設定します。

---------------------------------------------------------------------------------------------------------
■ソースコード
foregroundColor.cmyk.cyan = 0;
foregroundColor.cmyk.magenta = 100;
foregroundColor.cmyk.yellow = 20;
foregroundColor.cmyk.black = 10;
backgroundColor.rgb.red = 255;
backgroundColor.rgb.green = 128;
backgroundColor.rgb.blue = 64;

---------------------------------------------------------------------------------------------------------
■使い方
1:ファイルメニューからスクリプトを実行します。
2:前景色と背景色の色が設定されます。

---------------------------------------------------------------------------------------------------------
■ポイント
 なし

---------------------------------------------------------------------------------------------------------
■注意
 なし

■実際のスクリプトをダウンロード(sample.js.zip)