Computer Science Canada

Size of out put screen.

Author:  Neja [ Wed Jan 07, 2004 8:41 pm ]
Post subject:  Size of out put screen.

Don't shoot me, I'm just stupid. How do I change the size of the output screen?

Author:  icedesi [ Wed Jan 07, 2004 9:18 pm ]
Post subject: 

setscreen ("graphics:size;size")
% Example
setscreen ("graphics:800;600")


There u go.

Author:  Neja [ Wed Jan 07, 2004 9:24 pm ]
Post subject: 

That was a very stupid question, wasn't it?
Thank you.

Author:  icedesi [ Wed Jan 07, 2004 9:25 pm ]
Post subject: 

Nah, U gotta start Turing Somewhere....

Author:  Thuged_Out_G [ Thu Jan 08, 2004 3:05 pm ]
Post subject: 

well, there is another method that i prefer, because i allows you to close the window when you are done the program
code:

var win:=Window.Open("position:top,center,graphics:SIZE1;SIZE2")


that opens the window

code:

loop
Window.Close(win)
end loop


what closes the window

extra options for the window

noecho
nocursor
nobuttonbar(i think)

and probably a few others, check the help files for more


: