04-07-2024, 02:06 AM
(04-06-2024, 09:43 PM)Tim Wrote: By the way, Terry, I implemented the code you gave me, SCREEN _NEWIMAGE(800, 600, 32) ' modern 800x600 32bit graphics screen. Very helpful. I am only on lesson 4 of the tutorial, but it still helps to be able to see the practice programs more completely than with the default.You're almost there. Lesson 5 introduces graphics and using _NEWIMAGE with SCREEN.
You can make any size screen you like using this method.
SCREEN _NEWIMAGE(1024, 768, 32)
SCREEN _NEWIMAGE(1280, 1024, 32)
SCREEN _NEWIMAGE(1600, 800, 32)
The first two values, width and height, can be anything you like.