Included is a plug-in for creating, writing to (and reading from) a console window.
Here's the test program :
REM Project: TestConsole
REM Created: 06/08/2006 12:54:05
REM
REM ***** Main Source File *****
REM
x=openConsole(1)
x=openConsole(1)
if x
_x=consoleTitle("Testing a cube.")
_x=consoleColour(1,10)
_x=consoleClear()
endif
remstart
x=consoleLocation(10,10)
x=consoleColour(1,3)
x=writeToConsole("Yo Dudes",1)
x=consoleClear()
x=consoleTitle("Test")
print consoleInput()
remend
make object cube 1,10
position object 1,0.0,0.0,0.0
x#=0.0
repeat
rotate object 1,x#,0.0,0.0
inc x#,0.01
_x=consoleLocation(0,0):_x=writeToConsole("X Angle : "+str$(x#,5),0)
sync
until spacekey()
x=closeConsole()
end
And heres a screen shot :