Computer Science Canada

Expandisng Output Screen Size

Author:  Snicket [ Thu May 25, 2006 8:23 am ]
Post subject:  Expandisng Output Screen Size

My problem isn't as simple as that though. I want to expand the screen size slowly. Ex. a loop that makes it 100x100 then 101x101. I dont think it is possible but I was wondering if anyone had any ideas.

Author:  jamonathin [ Thu May 25, 2006 9:41 am ]
Post subject: 

There was a slight dicussion about this before, unfortionately there's no way to smoothly do it.

click!

Author:  Snicket [ Thu May 25, 2006 5:33 pm ]
Post subject: 

Better than nothing. Thanks.

Author:  Snicket [ Thu May 25, 2006 9:06 pm ]
Post subject: 

I realize that this problem was posted last year but I think I came up with a quick fix.
[code]
var winID := Window.Open ("position:0;0,graphics:0;100")
var winID2 := Window.Open ("position:0;0,graphics:0;100")
for x : 0 .. 300
Window.Set (winID, "graphics:" + intstr (x) + ";100")
Window.Set (winID2, "graphics:" + intstr (x) + ";100")
end for
Window.Close (winID2)
[/code]
It is not the best but it eliminates most of the flashing


: