ok, i used the code but the bitmap shows up at the beginning, i want it to show up after i press the button. "nxt_hi.bmp" is my bitmap i want to show up, and "nxtorange" is my button to make the bitmap show up. heres the code.


PANEL* nxthi_panel =
{
bmap = nxt_hi.bmp;
pos_x = 275;
pos_y = 170;
layer = 3;
flags = OVERLAY | VISIBLE;
}

function turn_on()
{
set(nxthi_panel, SHOW);
}

PANEL* button_panel =
{
pos_x = 340;
pos_y = 165;
layer = 3;
button(0, 0, "nxtorange.bmp", "nxtorange.bmp", "nxtorange.bmp", NULL, NULL, NULL);
flags = OVERLAY | VISIBLE;
}


Sorry, im new. I have a tendency to ask really simple questions, so please be patient.