
-----------------------------------
Lazarus
Tue May 31, 2005 12:29 pm

Full Screen?
-----------------------------------
Normally, you would just use the setscreen for

setscreen ("graphics:max;max,nobuttonbar")

But I need something that will make the program appear in "FULLSCREEN". Like most games do today. Any Suggestions? Can this even be done? If it can, my trusty F10 button isn't finding anything..

-----------------------------------
jamonathin
Tue May 31, 2005 1:25 pm


-----------------------------------
Nopers,  graphics:max;max is the best you're going to find.

-----------------------------------
Mazer
Tue May 31, 2005 6:00 pm


-----------------------------------
Sure it can be done. You'd just have to use Turing 3.11.

Then it's a simple matter of
var win := Window.Open("graphics:fullscreen")
Or something like that. You might need to say "Fullscreen" instead of "fullscreen".

-----------------------------------
atrain
Tue May 31, 2005 8:04 pm


-----------------------------------
if only you could do:

setscreen ("opengl-3d,graphics:Fullscreen")

:D

-----------------------------------
StarGateSG-1
Tue May 31, 2005 10:29 pm


-----------------------------------
Well, there alwasy is adjust your screen to hide the bars, so change the acreen width and height. That is the most crude method but if you  re dying for it then ok, Or you could leanr another language like C++. :D

-----------------------------------
[Gandalf]
Wed Jun 01, 2005 11:07 am


-----------------------------------
This has been asked quite often.

Which brings me to my next problem with Turing.  You're not allowed to change the size of the window with the mouse, like you can normally.

Wait a minute... I'm sure its possible to create this...

Just:
1. Check if the mouse is clicked on the borders of the window.
2. Which border? left/right up/down
3. change the resolution of the window based on where the mouse moves and stops being pressed.

Something along those lines... hmm...

Challenge:  Make the window size changable by using the mouse to drag and drop, like in a normal window.

-----------------------------------
syphon4
Fri Jun 03, 2005 3:55 pm

full screen
-----------------------------------
set the screen to maxx and maxy :p

...can anyone make me a luigi character using the drawdot,drawfilloval...etc features in turing and then send me code ...thx is advance

-----------------------------------
Cervantes
Fri Jun 03, 2005 5:13 pm


-----------------------------------
Since I'm here, I might as well say it again: Stop spamming.

"]Challenge:  Make the window size changable by using the mouse to drag and drop, like in a normal window.
It would not be nice looking.  When you change the graphics of a run window, it closes the window then reopens it.  I had a short-lived thread about it [url=http://www.compsci.ca/v2/viewtopic.php?t=8161]here.

-----------------------------------
MysticVegeta
Fri Jun 03, 2005 7:24 pm


-----------------------------------
Windows API + Turing dont work well together. Thats all i have to say

-----------------------------------
Jas
Sat Jun 04, 2005 8:36 pm


-----------------------------------

Sure it can be done. You'd just have to use Turing 3.11.

Then it's a simple matter of
Code:
var win := Window.Open("graphics:fullscreen")

Or something like that. You might need to say "Fullscreen" instead of "fullscreen".


i tried this, but it doesn't work. it only centers the screen. Maybe cuz I'm using version 4.0.3 (isn't that newer than 3.11?)
