Hi ,
I made a panel with this code :

Quote:

BMAP* loadinglogo = "Loading_wall_paper_800x600.bmp";

PANEL* LoadingLogoPanel ={
bmap = loadinglogo;
size_y = 560 ;
flags = SHOW ;
}


When the enter button is pressed this panel should be transparent with this code :

Quote:

if(key_enter == 1)
{
LoadingLogoPanel.alpha = 0;
level_load("level_one.wmb");
media_loop("level_one_music.mp3",NULL,60);
}


but this code isn't working !!
How can i do ?
confused confused confused confused