App won't window

Blitz3D Forums/Blitz3D Beginners Area/App won't window

Second Chance(Posted 2003) [#1]
Do I need to specify more than AppTitle to get my apps to run in a windows window? They always go full screen as executables, even at 320x240.


Curtastic(Posted 2003) [#2]
Graphics width, height, [color depth],[mode]

mode
0 : auto - windowed in debug, fullscreen in non-debug (this is the default)
1 : fullscreen mode
2 : windowed mode
3 : scaled window mode

I think the mode should go before the color depth, becuase it is set more often.


Second Chance(Posted 2003) [#3]
Ohhhh, I forgot all about that. I've never tried to make an app that wasn't full screen. Thanks a million.