an other thing (sorry for not editing, but when i click on "edit this post", it drives me on the main page)
I tried with this code (i created a function)
function CentreTextSurSprite(sprit,x,y,texte$)
create bitmap 10,text width(texte$),text height(texte$)
set current bitmap 10
text 0,0,texte$
get image sprit,0,0,text width(texte$),text height(texte$)
set current bitmap 0
delete bitmap 10
sprite sprit,x-text width(texte$)/2,y-text height(texte$)/2,sprit
endfunction
(sprit is the number of the sprite)
i call it like that:
CentreTextSurSprite(9,20,20,AffichageTouche(7) + " / " + AffichageJoy(7))
and the result is strange (to compare on the image, i made on the top a: text 1,1,AffichageTouche(7) + " / " + AffichageJoy(7))
An idea?