Hello!
i am writing a script for lerning lite-c. I use lite-c at this moment. Here is my script:
Code:
PANEL* TIMEs_pan =
{
	digits(580, 300, 2, "Arial#150b", 1, sys_seconds); 
	flags = SHOW;
}
PANEL* TIMEm_pan =
{
	digits(580, 300, 2, "Arial#150b", 1, sys_minutes); 
}
function change()
{
	reset(TIMEs_pan, SHOW);
	set(TIMEm_pan, SHOW);
}
PANEL menu_pan =
{
	bmap = menu_back;
	pos_x = 128;
	pos_y = 128;
	button(256, 256, "off.bmp", "on.bmp", "over.bmp", change, NULL, NULL); 
	flags = SHOW;
}

Why this doesen´t work???
I get an error with the Button.