Chez moi ce code ne fonctionne pas et chez vous :
L'appuie sur la touche A est inopérante, par contre pour Escape, pas de problème.
Code : Tout sélectionner
If InitSprite() And InitKeyboard() And OpenScreen(800,600,16,"")
Repeat
FlipBuffers()
If StartDrawing(ScreenOutput())
DrawText(0, 0, "Appuyez sur la touche [Echap] pour quitter")
StopDrawing()
EndIf
ExamineKeyboard()
If KeyboardPushed(#PB_Key_A)
Debug "Touche A"
If StartDrawing(ScreenOutput())
DrawText(0, 50, "Touche A")
StopDrawing()
EndIf
EndIf
If KeyboardPushed(#PB_Key_Escape) ; Appuyez sur la touche [Echap] pour quitter
End
EndIf
ForEver
EndIf