| Hi all I'm not sure if I've killed my install of BMax or not, but could some kind souls try this code please to see if you can exit the app.
 
 
 
superstrict
'Framework SRS.MAX3D
SetGraphicsDriver GLGraphicsDriver()
Local g:TGraphics = CreateGraphics(800,600,32,60,GRAPHICS_BACKBUFFER)
SetGraphics g
While Not KeyDown(KEY_ESCAPE)
	If KeyDown(KEY_SPACE)	GLDrawText "BMAX" , 0 , 0
	Flip
Wend
CloseGraphics g
 
 [edit] basically I have a prob of the keys not working during fullscreen, works ok in windowed mode.
 
 ESCAPE should exit
 SPACE should show a message in the top left
 
 thanks all
 
 Last edited 2011
 
 
 |