BUG?

Blitz3D Forums/Blitz3D Programming/BUG?

Boiled Sweets(Posted 2003) [#1]
Try the following, you will NOT be able to ALT-TAB correctly. If howover you don't have the first line it will. Surely this is a BUG in Blitz3d because it means that you cannot start an app in full screen then change it to windowed mode then allow the user to ALT-TAB.

Graphics3D 800,600,0,1
Graphics3D 800,600,0,2

While Not KeyDown(1)
RenderWorld()
UpdateWorld()
Flip
Wend


Ethan3850(Posted 2003) [#2]
IF you could do that you wouldn't need to have a launcher.


Floyd(Posted 2003) [#3]
I can Alt-Tab and see other apps behind the Blitz window.

For example, right now I can see Internet Explorer and type this message, after I move the Blitz Window off to the side.

The problem seems to be that after starting full screen the Blitz window is always on top.


Boiled Sweets(Posted 2003) [#4]
Floyd,

exactly!!!!!!!!!!!!!

So is there a solution to this or do you have to use a launcher (which I don't want to do!)

Thanks.


darklordz(Posted 2003) [#5]
ERRRR.....Use a userlib winapi to disable the always ontop....


Ethan3850(Posted 2003) [#6]
Or press minimize? Switching back and forth from full screen to windowed won't go down well on some GFX cards (particularly if they're running the destop in a perculiar fashion).

Still might be worth giving this a mention in the Blitz3D Bug Reports forum.


Ross C(Posted 2003) [#7]
You tried using the EndGraphics command?


Boiled Sweets(Posted 2003) [#8]
Yes, doesn't help!