|
From: Jonathan P. <jp...@dc...> - 2005-09-22 10:23:14
|
On 22 Sep 2005, at 1:21, Dave Howell wrote:
> I'm trying to put images on an otherwise blank screen. The
> following code should do that, however, it errors out with
> "uninitialized constant OSX::NScreenSaverWindowLevel" if the two
> lines that are commented out are enabled.
>
> #windowLevel = (OSX::NSWindow::NScreenSaverWindowLevel) #
> this fails
>
> How do I get those constants defined?
(1) Reference OSX:: directly rather than OSX::NSWindow::
(2) Spell NSScreenSaverWindowLevel correctly :)
NScreenSaverWindowLevel
vs.
NSScreenSaverWindowLevel
|