Thanks for your replies.
I'm sorry for being so noob, but whatever I try, the problem is still there
Here is the guilty code :
set text font "Arial"
set text size 20
load image "graphs\menu.jpg",1
load image "graphs\quizmenu.jpg",2
load image "graphs\quizadd.jpg",3
load image "graphs\case.jpg",4
load image "graphs\faux.jpg",5
load image "graphs\juste.jpg",6
load image "graphs\select.jpg",7
paste image 2,0,0
sprite 1,0,448,7
sprite 2,960,448,4
sprite 3,0,640,4
sprite 4,960,640,4
text 0,0,scored$
backdrop off
do
If upkey()=1
Select pos
Case 3
pos=1
sprite 1,0,448,7
sprite 3,0,640,4
EndCase
Case 4
pos=2
sprite 2,960,448,7
sprite 4,960,640,4
EndCase
EndSelect
Endif
If rightkey()=1
Select pos
Case 1
pos=2
sprite 2,960,448,7
sprite 1,0,448,4
EndCase
Case 3
pos=4
sprite 4,960,640,7
sprite 3,0,640,4
EndCase
EndSelect
Endif
If downkey()=1
Select pos
Case 1
pos=3
sprite 1,0,448,4
sprite 3,0,640,7
EndCase
Case 2
pos=4
sprite 2,960,448,4
sprite 4,960,640,7
EndCase
EndSelect
Endif
If leftkey()=1
Select pos
Case 2
pos=1
sprite 2,960,448,4
sprite 1,0,448,7
EndCase
Case 4
pos=3
sprite 4,960,640,4
sprite 3,0,640,7
EndCase
EndSelect
Endif
loop
The code is functionally working : I can move the answer selecter, but the image in the "paste image 2,0,0" is not displayed properly because of the 3D background thing.
Thanks in advance
FireFog.