I'm trying to programmatically create the equivalent of opening a window and dragging the bottom of the console up so it's only 10 lines of text.
If I use
I get a standard 80x25 console with a side scroll bar. That's the default. If I use
I get a 80x10 screen with no scroll bars. Messing around with all the other new (to me at least) console set or get commands doesn't appear to offer any way to get the 80x10 window with a scrollbar on an 80x300 screen. Help please?
If I use
Code:
CONSOLE SET SCREEN 300,80
Code:
CONSOLE SET SCREEN 10,80
Comment