Hide Title Bar or Collapse to Title Bar

I’m trying to figure out how to hide the titlebar in a global floating window, or force a Plain Box Window to stay in front of all other application windows so I can do the effect bellow.

Are there any Xojo examples,. declares, MBS examples that do this?

Tittle Bar Collapse

To make a window to be floating, you can use this code, using the MBS plugin:

self.NSWindowMBS.Level=self.NSWindowMBS.NSStatusWindowLevel

2 Likes

Thank you - That worked perfectly.