NXC  Version 1.2.1 r5
 All Data Structures Files Functions Variables Groups Pages
ex_dispgoutex.nxc

This is an example of how to use the GraphicOutEx and Wait functions.

#download "letters.ric"
string fnames[] = {"letters.ric", "letter2.ric" };
int Values[] = {0};
void Display( int n )
{
Values[0]=n*10;
GraphicOutEx(Values[0], Random(30), fnames[0], Values, DRAW_OPT_CLEAR_WHOLE_SCREEN);
}
task main()
{
while( true )
{
for( int i=0; i<9; i++ )
Display( i );
}
}