Computer Science Canada

Fullscreen??

Author:  DarkElf [ Thu Jun 12, 2003 3:31 pm ]
Post subject:  Fullscreen??

is there anyway to make your program run in full screen? tnx

Author:  Homer_simpson [ Thu Jun 12, 2003 3:49 pm ]
Post subject: 

not in the newer versions of turing...=/

Author:  Mazer [ Thu Jun 12, 2003 4:21 pm ]
Post subject: 

but in case you actually are using winoot 3.11 (apparently there are quite a few people still using it...) then here's what you do:

code:

var win := Window.Open ("fullscreen")


that should do it. maybe the 'f' was capitalized, i can't really remember. just place that line at the beginning of your code, before anything is drawn/put to the screen. and when your program is done and you want to close the window:

code:

Window.Close (win)

Author:  Tony [ Thu Jun 12, 2003 4:51 pm ]
Post subject: 

you could just promp the user to pick the size for the window and View.Set it to that

Author:  DarkElf [ Thu Jun 12, 2003 5:48 pm ]
Post subject:  thanks

it worked 8)

Author:  Andy [ Fri Jun 13, 2003 10:43 am ]
Post subject: 

damn holtsoft... must kill tom west...

Author:  PaddyLong [ Fri Jun 13, 2003 7:49 pm ]
Post subject: 

to make a window that takes up whole screen use max;max for the width and height of the window (ex. Window.Open("graphics:max;max"))


: