hey thanks for the help. ok new problem. i got the mouse to work and the backround to gather. here is the code for you to see. i made in about 5 mins to it does not look good.
Graphics 800,600,0,1
SetBuffer BackBuffer()
mouse = LoadImage("C:\Documents and Settings\chris.BILL\My Documents\uaeq2\sever\pics\mouse.png")
back = LoadImage("C:\Documents and Settings\chris.BILL\My Documents\uaeq2\sever\pics\back.jpg")
bar = LoadImage("C:\Documents and Settings\chris.BILL\My Documents\uaeq2\sever\pics\bar.jpg")
While Not KeyDown(1)
Cls
DrawImage back,0,0
DrawImage bar,0,0
DrawImage mouse,MouseX(),MouseY()
Flip
Wend
the question is how can i make an event that activates a line of code when i click a button on screen, like start. and make a menu come up.
malicnite