メニューを配列で指定して表示します。(V1.24)
Display the menu. (V1.24)
Specify the menu item in the array.
You can use JavaScript array.(V1.78)
JavaScriptの配列の例a=[ "\x01サブメニューA", "項目A-1", "項目A-2", "", "\x01サブメニューB", "項目B-1", "項目B-2", "", "項目C" ]; menuArray( a );
a=[];
a[0]="a1";
a[1]="b2";
a[2]="c3";
menuArray( a );