
-----------------------------------
Kid_Goron
Tue Jun 15, 2004 10:39 am

View.Set fullscreen?
-----------------------------------
I recently was browsing amoung the source codes and I noticed a program that use the View.Set command and used fullscreen.  I have since lost which one it is amoung the many codes.  Can anybody tell me what the source code post was called, or send me the code directly.

Thanks

-----------------------------------
SuperGenius
Tue Jun 15, 2004 11:50 am


-----------------------------------
you can use the nice search function, and if you set the category to turing then you will be able to find it pretty quickly

-----------------------------------
Delos
Tue Jun 15, 2004 2:54 pm


-----------------------------------
To get full screen (sort of)


setscreen ("graphics:max;max")


Of course, real full screen is not available in WinOOT.

You may also be refferring to [url=http://www.compsci.ca/v2/viewtopic.php?t=5147]this.

-----------------------------------
Tony
Tue Jun 15, 2004 5:13 pm


-----------------------------------

View.Set ("graphics:max;max")
View.Set ("nobuttonbar")
put "hello world"

looks better :D

-----------------------------------
Delos
Tue Jun 15, 2004 6:14 pm


-----------------------------------
Bien-sÃ»r...

-----------------------------------
king_boby
Mon Jun 21, 2004 3:13 pm


-----------------------------------
what is the buttonbar?

-----------------------------------
naoki
Mon Jun 21, 2004 5:41 pm


-----------------------------------
It's the horizontal bar across the top of the window with "Print" "Pause" and all those commands. Removing it is good if you don't want the user to quit unless he actually quits your game.

-----------------------------------
the_short1
Mon Jun 21, 2004 7:46 pm


-----------------------------------
yea why bother putting View.Set ("nobuttonbar") on a sperate line??

View.Set ("graphics:max;max,nobuttonbar") works more eficiently! :P



yea i think Holtsoft better get their shit in gear and make turing able to do FULLSCREEN again.. that and the list all vars command!!!

-----------------------------------
Pickles
Mon Jul 05, 2004 2:29 am

dgfsfgh
-----------------------------------
for the older versions of turing, where there actually is fullscreen

 var w : int := Window.Open ("fullscreen")
      Window.Set (w, "nocursor") % Turn off the blinking text cursor
