I want to have some UI controls on top of a NSWebView
and because of this problem " https://stackoverflow.com/questions/9120868/video-in-nswebview-hides-views-on-top-of-the-nswebview " I now want to add a "transparent" NSWindow
, so without the close buttons etc., on top of my NSWebView
, hence, on top of my current NSWindow
.
How can I achieve this and make sure that this "overlay window" stays in place, even if I move the underlying window?
EDIT:: While @dzolanta's approach works fine, I wonder if it is possible to do it by using an NSWindowController
which would allow me to properly use Outlets etc.