Re: [racket-users] Full-screen big-bang

2015-10-02 Thread Jay McCarthy
On Fri, Oct 2, 2015 at 4:59 AM, wrote: > That's nice to know about enabling the green button, but I think -- for > kindergarteners -- I should just take over the whole screen programmatically. The frame% object has a fullscreen method that makes it fullscreen (on OS X, this makes a new desktop)

Re: [racket-users] Full-screen big-bang

2015-10-02 Thread byrondavies
That's nice to know about enabling the green button, but I think -- for kindergarteners -- I should just take over the whole screen programmatically. To start with, I'm making simple rectangular grid games, which are very easily scalable. The screen is divided into a rectangular grid of cells,

Re: [racket-users] Full-screen big-bang

2015-10-01 Thread Jay McCarthy
There's two ways to do this. If we add 'fullscreen to this line of this file, then the green button will turn into the fullscreen button on new Macs: https://github.com/racket/htdp/blob/fc64e81fd9859b19f1fcabe44f65297ce207fdba/htdp-lib/2htdp/private/world.rkt#L213 However, that probably won't lo