Add background image to library
Create a style for page with the image as background
Create a text style col-black, font- Ascii32
Define a page named "pageName" with style "pageStyle"
Write text "Hello World" using textstyle
After loading show the page named "pageName"
|
LIB(background,"SDHC/bground.png");
STYLE(pageStyle, Page) { image = background; }
STYLE(textstyle, Text) { font = Ascii32; col = black; }
PAGE(pageName, pageStyle)
{
POSN(240, 136);
TEXT(text1,"Hello World", textstyle);
}
SHOW(pageName);
|