Wie mache ich das bIld jetzt im Screen sichtbar ?
danke.
gruss
Code: Alles auswählen
CreateImage(0, 320,192)
LoadImage(1,"logosw.bmp")
StartDrawing(ImageOutput(0))
DrawImage(ImageID(1), 0, 0)
StopDrawing()
Code: Alles auswählen
CreateImage(0, 320,192)
LoadImage(1,"logosw.bmp")
StartDrawing(ImageOutput(0))
DrawImage(ImageID(1), 0, 0)
StopDrawing()
Code: Alles auswählen
EnableExplicit
InitSprite()
InitMouse()
InitKeyboard()
If OpenScreen(1024,768,32,"Screen")
LoadSprite(0,"logosw.bmp")
Repeat
FlipBuffers()
ClearScreen(RGB(0,0,0))
DisplaySprite(0,100,100)
ExamineKeyboard()
ExamineMouse()
If KeyboardReleased(#PB_Key_Escape)
End
EndIf
ForEver
EndIfCode: Alles auswählen
EnableExplicit
InitSprite()
InitMouse()
InitKeyboard()
If OpenScreen(1024,768,32,"Screen")
CreateSprite(0,320,192)
LoadImage(1,"logosw.bmp")
If StartDrawing(SpriteOutput(0))
DrawImage(ImageID(1),0,0)
StopDrawing()
EndIf
Repeat
FlipBuffers()
ClearScreen(RGB(0,0,0))
DisplaySprite(0,100,100)
ExamineKeyboard()
ExamineMouse()
If KeyboardReleased(#PB_Key_Escape)
End
EndIf
ForEver
EndIf