Is it possible to run but >HIDE< an application made in Blitz3d.
Like it is running but you don't see anything.
Like it is running but you don't see anything.
Global hwnd=SystemProperty("apphwnd") Graphics3D 800,500,0,2 SetBuffer BackBuffer() cam=CreateCamera() PositionEntity cam, 0,0,-4 cube=CreateCube() Repeat TurnEntity cube,.3,.4,.5 UpdateWorld RenderWorld Text 10,10,x Flip Delay 10 x=x+1 If x=200 Then api_ShowWindow(hwnd,0) If x=300 Then api_ShowWindow(hwnd,1) Until KeyHit(1) End