wierd window flashes

BlitzPlus Forums/BlitzPlus Programming/wierd window flashes

gellyware(Posted 2004) [#1]
I am wondering why when I use the confirm command, the background goes to black? Also if I resize the window from the bottom right, the image flickers black then image...black then image.....

I am using vwait. What would be the cause for these responses?


semar(Posted 2004) [#2]
I *think* you should not use vwait. Instead, use a simple flip command (or flipcanvas, if you're using a canvas).

Sergio.


ford escort(Posted 2004) [#3]
or maybe is just using the flip command by not redraw all the screen,
try setting your graphic mode to something like that if you don't use canvas

graphics 800,600,0,3

the '3' flag copy to the front buffer instead of fliping back to front and front to back that can produce such an effect :)