i will translate for you:

he said "it is a definition for:
(exit the level the level is closed)

the menu is extendable downward


then 3run said: can you please write it all in english?

then richi007 said

level include:
Code:
level_load(NULL);



exit menu below
Code:
PANEL* meinmenu = 
{
...
pos_y = -100; //Negative Höhe des Panels
}
function panelausfahren ()
{
	while(meinmenu.pos_y < 0) //(1)
	{
		meinmenu.pos_y += 2*time_step; // Panel nach unten fahren (2)
		wait(1);
	}
	meinmenu.pos_y = 0;// Panel am oberen Bildschirmrand (1)
}



the code creates a panel.
this panel must be above the screen
Panelausfahren if the function is called, it pushes the panel to the top of the screen.
the pipette 0 must be replaced in (1) with your value against which to be provided after the panel.
the 2 in (2) is speed.


i hope my translation helped you guys.