Thanks,
This works to change the Font: "Arial#24b"
But not so good for line spacing. Lines overlap.
I tried blank_line per script07.c but got errors.
And searched for "line feed", "blank line", etc.. but no such.
Thanks...vm
////////////////////////////////////////////////////////////////////
#include <acknex.h>
#include <default.c>
var a = 0;
var b = 0;
var c = 0;
/////////////////////////////////////////////////////////////////////
PANEL* panDisplay =
{
digits(35, 10, "a = %0.f", "Arial#24b", 1, a);
digits(35, 19, "b = %0.f", "Arial#24b", 1, b);
digits(35, 28, "c = %0.f", "Arial#24b", 1, c);
flags = SHOW;
}
/////////////////////////////////////////////////////////////////////
function main()
{
screen_size.x = 800;
screen_size.y = 600;
screen_color.blue = 150; // and make its background dark blue
while (1)
{
c = a + b;
wait (1);
}
}