Sorry if I was vague. There's just not much more to it- the buttons don't work. They won't change their bitmaps or execute functions on hover or click. Here's the code for the main menu panel with a single button:

Code:
panel main_menu{
	pos_x=0;
	pos_y=0;

	bmap=mainmenuback;
	alpha=0; //will be faded in later
	layer=950;

	button(400,400,button_start,button_start,button_start2,init_level,null,null);

	flags=refresh,translucent;
}


That's basically it, I think. If there's any other code you think would be helpful to see, let me know. Thanks.


EDIT: That's it! It was the mouse mode. I set the mouse mode in the init_level function, which would be executed by the start button in the menu. Thanks, testDummy! I was pulling my hair out for over an hour trying to solve this... I knew it was going to be something stupid on my part smile

Last edited by BOK; 06/27/08 05:26.