Size of out put screen.
Author |
Message |
Neja
|
Posted: 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? |
|
|
|
|
|
Sponsor Sponsor
|
|
|
icedesi
|
Posted: Wed Jan 07, 2004 9:18 pm Post subject: (No subject) |
|
|
setscreen ("graphics:size;size")
% Example
setscreen ("graphics:800;600")
There u go. |
|
|
|
|
|
Neja
|
Posted: Wed Jan 07, 2004 9:24 pm Post subject: (No subject) |
|
|
That was a very stupid question, wasn't it?
Thank you. |
|
|
|
|
|
icedesi
|
Posted: Wed Jan 07, 2004 9:25 pm Post subject: (No subject) |
|
|
Nah, U gotta start Turing Somewhere.... |
|
|
|
|
|
Thuged_Out_G
|
Posted: Thu Jan 08, 2004 3:05 pm Post subject: (No 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 |
|
|
|
|
|
|
|