Spacing of Fields in Action Wizard Form has unwanted gaps
Hi,
I am trying to change the spacing using alignment properties but unsuccessful. I do not want these huge gaps between "Include Doc #" and "Enter Page Prefix" and "Include Page #" and "Include "of N" pages (see Image from Form below). I tried align_distribute, align_left, align_fill but no luck (see Code below). The output remains the same.
Image from Form:

Code:
{
type: "view",
align_children: "align_row",
elements:
[
{
type: "static_text",
item_id: "sta6",
name: "4. Enter Starting Doc #:",
},
{
type: "edit_text",
item_id: "DNum",
variable_Name: "strInitDocNum",
char_width: 3,
},
{
type: "check_box",
item_id: "DocN",
name: "Include Doc #",
variable_Name: "bIncludeDocNum",
alignment: "align_distribute",
},
{
type: "static_text",
item_id: "sta7",
name: "Enter Page Prefix (or use default):",
alignment: "align_distribute",
},
{
type: "edit_text",
item_id: "PPfx",
variable_Name: "strPageNumPrefix",
char_width: 8,
},
{
type: "check_box",
item_id: "PgNm",
name: "Include Page #",
variable_Name: "bIncludePageNum",
alignment: "align_distribute",
},
{
type: "check_box",
item_id: "PPsf",
name: "Include \"of N\" pages",
variable_Name: "bPageNumPostfix",
alignment: "align_distribute",
},

