Folks,
I've been fiddling with the text box and spacer formats so I can get an even (white) background when I save the title slide to PowerPoint. However, I cant get the backgrounds and borders to be white instead of grey (see image). I've worked on text box widths, etc, but to no avail. I've attached my script.
If anyone can see what I need to do, I would be most appreciative. Also as a side note, is there a more eloquent way of tabbing the second text box (date) to align with the first text box?
BB = Border Box(Left(50), Right(10), Sides(15),
Vlist Box(
Text box(
"<font color='Black'>Work</font>",
<< Set Font("Calibri", 30, "bold"),
<< Markup
),
Spacer Box(),
Text box(
" " || char(Abbrev Date(Today())),
<< Set Font("Calibri", 30, "bold")
)
)
);
BB << Set background color(white);
BB << Set Color("white");
slide_1 = Expr(
Vlist box(
Spacer Box(size(5,50) ),
BB
)
);
If(b==0,
slide_1a = slide_1 << Get Picture;
slide_1b = Picture Box(slide_1a);
slide_1b << Save Presentation(p1, Insert(Begin));
);
Neil