
-----------------------------------
DarkElf
Thu Jun 12, 2003 3:31 pm

Fullscreen??
-----------------------------------
is there anyway to make your program run in full screen? tnx

-----------------------------------
Homer_simpson
Thu Jun 12, 2003 3:49 pm


-----------------------------------
not in the newer versions of turing...=/

-----------------------------------
Mazer
Thu Jun 12, 2003 4:21 pm


-----------------------------------
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:


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:


Window.Close (win)


-----------------------------------
Tony
Thu Jun 12, 2003 4:51 pm


-----------------------------------
you could just promp the user to pick the size for the window and View.Set it to that

-----------------------------------
DarkElf
Thu Jun 12, 2003 5:48 pm

thanks
-----------------------------------
it worked   8)

-----------------------------------
Andy
Fri Jun 13, 2003 10:43 am


-----------------------------------
damn holtsoft... must kill tom west...

-----------------------------------
PaddyLong
Fri Jun 13, 2003 7:49 pm


-----------------------------------
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"))
