Hi Wouter!
Try this ....for the mouse
Code:
bmap younameitbmp = <"drawing.pcx">; //dessin corel draw
function my_mouse_fction ()
{
enable_mouse = on;
mouse_mode = 1;
MOUSE_MAP = younameitbmp;
mouse_range= 1500; // only near Entities are clickable
MOUSE_spot.x = bmap_width(cross)/2; // hot spot in the middle
MOUSE_spot.y = bmap_height(cross)/2; // hot spot in the middle
while (MOUSE_MODE > 0) // move it over the screen
{
MOUSE_POS.X = POINTER.X;
MOUSE_POS.Y = POINTER.Y;
wait(1);
}
}
Try this for the panel...
Code:
bmap door__y = <console_door__yellow.pcx>;
bmap door__g = <console_door__green.pcx>;
panel door_menu
{
pos_x = 725;
pos_y = 500;
layer = 4;
alpha = 100;
button = 0,0,door__y,door__y,door__g,m_door_,null, null;
flags = overlay;
}
Hope this helps. :0