I want to display some output in a separate Window but WITHOUT all the usual Windows accoutrements. I don't want a title bar, I don't want a menu of options, I don't want a scroll bars - I just want a simple "frame" with my graphic output sitting within it.
I have been successful in creating a separate window using code like:
nb = CreateDocument[
Dynamic[pictureWindow], WindowFrame -> "Palette",
WindowTitle -> None, WindowSize -> {200, 100}];
. . . but this gives me all the (to me, in this instance) extraneous stuff.
How could I generate a new window and control its displayed elements?
