Gentlemen,
Many thanks for your generous time. Your suggestions worked. This was helpful since I have several Expressions which are image and title sub blocks that integrate into a final image that gets copied to PowerPoint (script attached with your solution).
As an aside, I tripped across a possible alternate approach (via Scripting Guide - p. 558) using HTML Tags. I tried this which works as well.
Again I'm very grateful for your valuable time.
Neil
text = Expr(
H List Box(
spacer box(),
y = Text Box("Footer",
<< Set Wrap(500),
<< Set Font("Calibri", 18, "bold"),
spacer box(),
)
);
nw6 = Expr(
V List Box(
text,
spacer box(size(5,50)),
nw4
)
);
nw7 = New Window("title_7", nw6, y<< Font Color("Gray") );
// ** Alternate ** HTML Tags//
text = Expr(
H List Box(
spacer box(),
y = Text Box("<font color='Gray'>Footer</font>",
<< Set Wrap(500),
<< Set Font("Calibri", 18, "bold"),
<<Markup),
spacer box(),
)
);
Neil